about summary refs log tree commit diff stats
path: root/themes/xmin/layouts/_default/single.html
diff options
context:
space:
mode:
authorAlan Pearce2020-01-10 19:57:53 +0100
committerAlan Pearce2020-01-10 19:57:53 +0100
commitcdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84 (patch)
tree22c02e0642ca4055a768cc8f1ebff95741c273dc /themes/xmin/layouts/_default/single.html
parenteea42a5b1b05fbbdc9f33df41576de0232fcbd4d (diff)
parentd5857f9dbecd498e341c8cb5d0866749c5c554c7 (diff)
downloadwebsite-cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84.tar.lz
website-cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84.tar.zst
website-cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84.zip
Merge commit 'd5857f9dbecd498e341c8cb5d0866749c5c554c7'
Diffstat (limited to 'themes/xmin/layouts/_default/single.html')
-rw-r--r--themes/xmin/layouts/_default/single.html30
1 files changed, 19 insertions, 11 deletions
diff --git a/themes/xmin/layouts/_default/single.html b/themes/xmin/layouts/_default/single.html
index de3f121..54acdc6 100644
--- a/themes/xmin/layouts/_default/single.html
+++ b/themes/xmin/layouts/_default/single.html
@@ -1,12 +1,20 @@
-{{ partial "header.html" . }}
-<div class="article-meta">
-<h1><span class="title">{{ .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 }}
-</div>
+{{ define "main" }}
+<article class="h-entry">
+  <header>
+    <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1>
+    {{ with .Params.author }}<h2 class="author">{{ . }}</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) }}
+      {{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
+      {{ end }}
+      {{ end }}
+    </p>
+  </header>
 
-<main>
-{{ .Content }}
-</main>
-
-{{ partial "footer.html" . }}
+  <main class="e-content">
+  {{ .Content }}
+  </main>
+</article>
+{{- end }}