summaryrefslogtreecommitdiff
path: root/layouts/reviews/single.html
blob: 8b8e1dac51a649be02e0aca637ef39fd38f2a36c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ define "main" }}
<article class="reviews">

  <aside class="right-panel">
  {{ partial "reviews/metrics.html" . }}

  {{ if .Page.Params.related}}
  {{ partial "reviews/related.html" . }}
  {{ end }}
  </aside>
  <h2> <a href="{{ .Page.Permalink }}"> {{ .Title }}</a></h2>
  <hr>

  {{ .Page.Content }}

  <hr>
  <time datetime="{{.PublishDate.Format "2006-01-02" }}">
    Published:   
   {{ .PublishDate.Format "Monday, 2 Jan 2006" }}
  </time>
</article>
{{- end }}