about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2020-01-07 18:07:41 +0100
committerAlan Pearce2020-01-07 18:07:41 +0100
commitaa6eb5a51f3bdbc4e7c621d2a36701ef57ce0143 (patch)
tree5cff905e9c834c0ca7baed5ef43e38643e97227e
parent217445ac814209a27682ff5bdb71adb89d7b58cd (diff)
downloadhugo-xmin-aa6eb5a51f3bdbc4e7c621d2a36701ef57ce0143.tar.xz
hugo-xmin-aa6eb5a51f3bdbc4e7c621d2a36701ef57ce0143.zip
Make post template microformats-compatible master
-rw-r--r--layouts/_default/single.html12
1 files changed, 4 insertions, 8 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 9fbe403..54acdc6 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html
@@ -1,9 +1,9 @@
1{{ define "main" }} 1{{ define "main" }}
2<article> 2<article class="h-entry">
3 <header> 3 <header>
4 <h1><span class="title">{{ .Title | markdownify }}</span></h1> 4 <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1>
5 {{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }} 5 {{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
6 {{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006-01-02" }}</h2>{{ end }} 6 {{ if (gt .Params.date 0) }}<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }}
7 <p class="terms"> 7 <p class="terms">
8 {{ range $i := (slice "categories" "tags") }} 8 {{ range $i := (slice "categories" "tags") }}
9 {{ with ($.Param $i) }} 9 {{ with ($.Param $i) }}
@@ -13,12 +13,8 @@
13 </p> 13 </p>
14 </header> 14 </header>
15 15
16 <main> 16 <main class="e-content">
17 {{ .Content }} 17 {{ .Content }}
18 </main> 18 </main>
19
20 <footer>
21
22 </footer>
23</article> 19</article>
24{{- end }} 20{{- end }}