about summary refs log tree commit diff stats
path: root/themes/xmin/layouts/_default/single.html
blob: 1e27d65139775fbab24401d2f454ea681ae15b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
<article class="h-entry">
  <header>
    <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1>
    {{ if (gt .Params.date 0) }}<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }}
    <p class="terms">
      {{ range $i := (slice "categories" "tags") }}
      {{ with ($.Param $i) }}
      {{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
      {{ end }}
      {{ end }}
    </p>
  </header>

  <main class="e-content">
  {{ .Content }}
  </main>
</article>
{{- end }}