all repos — archive/hugo-xmin @ aa6eb5a51f3bdbc4e7c621d2a36701ef57ce0143

Customised minimal hugo theme

Make post template microformats-compatible

Alan Pearce
commit

aa6eb5a51f3bdbc4e7c621d2a36701ef57ce0143

parent

217445ac814209a27682ff5bdb71adb89d7b58cd

1 file changed, 4 insertions(+), 8 deletions(-)

jump to
M layouts/_default/single.htmllayouts/_default/single.html
@@ -1,9 +1,9 @@
{{ define "main" }} -<article> +<article class="h-entry"> <header> - <h1><span class="title">{{ .Title | markdownify }}</span></h1> + <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1> {{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }} - {{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006-01-02" }}</h2>{{ end }} + {{ 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) }}
@@ -13,12 +13,8 @@ {{ end }}
</p> </header> - <main> + <main class="e-content"> {{ .Content }} </main> - - <footer> - - </footer> </article> {{- end }}