summaryrefslogtreecommitdiffstats
path: root/_layouts/tag_page.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_layouts/tag_page.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/_layouts/tag_page.html b/_layouts/tag_page.html
new file mode 100644
index 0000000..fe2222d
--- /dev/null
+++ b/_layouts/tag_page.html
@@ -0,0 +1,10 @@
+---
+layout: default
+title: {{ page.tag }}
+---
+
+<ul>
+ {% for post in page.posts %}
+ <li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date_to_string }} | Tags: {{ post | tags }})</li>
+ {% endfor %}
+</ul> \ No newline at end of file