summaryrefslogtreecommitdiffstats
path: root/_layouts
diff options
context:
space:
mode:
authorSimone Bortolin <simonebortolin@users.noreply.github.com>2022-12-24 16:42:56 +0100
committerSimone Bortolin <simonebortolin@users.noreply.github.com>2022-12-24 16:42:56 +0100
commit45706e62a6a9befae949ba59ebd7003e26cca73c (patch)
tree6f9983755a0714eeedc870d316b2d9ac59fbc1a6 /_layouts
parentminor fix on markdown (#64) (diff)
downloadhack-gpon.github.io-45706e62a6a9befae949ba59ebd7003e26cca73c.tar
hack-gpon.github.io-45706e62a6a9befae949ba59ebd7003e26cca73c.tar.gz
hack-gpon.github.io-45706e62a6a9befae949ba59ebd7003e26cca73c.tar.bz2
hack-gpon.github.io-45706e62a6a9befae949ba59ebd7003e26cca73c.tar.lz
hack-gpon.github.io-45706e62a6a9befae949ba59ebd7003e26cca73c.tar.xz
hack-gpon.github.io-45706e62a6a9befae949ba59ebd7003e26cca73c.tar.zst
hack-gpon.github.io-45706e62a6a9befae949ba59ebd7003e26cca73c.zip
Diffstat (limited to '_layouts')
-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