wires

summary refs log tree commit diff
path: root/layouts/term.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/term.html')
-rw-r--r--layouts/term.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/term.html b/layouts/term.html
new file mode 100644
index 0000000..35ef1de
--- /dev/null
+++ b/layouts/term.html
@@ -0,0 +1,13 @@
+{{ define "main" }}
+<h1>{{ .Title }}</h1>
+<ul>
+  {{ range .Pages }}
+  <li>
+    <a href="{{ .Permalink }}">{{ .Title }}</a>
+    <time datetime="{{ .Lastmod }}">
+      {{ .Lastmod.Format "January 2, 2006" }}
+    </time>
+  </li>
+  {{ end }}
+</ul>
+{{ end }}