summaryrefslogtreecommitdiff
path: root/layouts/blog_tags
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/blog_tags')
-rw-r--r--layouts/blog_tags/term.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/layouts/blog_tags/term.html b/layouts/blog_tags/term.html
new file mode 100644
index 0000000..04cf050
--- /dev/null
+++ b/layouts/blog_tags/term.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+<h1>Posts Tagged With "{{ .Title }}"</h1>
+<ul>
+{{ range .Pages }}
+ <li>
+ {{ .Date.Format "2006, Jan 2" }} &ndash; <a href="{{ .Permalink }}">{{ .Title }}</a>
+ </li>
+{{ end }}
+</ul>
+{{ end }}