summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html
index 7a74e3c..554d418 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -9,16 +9,18 @@
<p>
Welcome to my personal blog! <br>
This page lists my blog entries in reverse chronological order. <br>
-You may also browse by tag (coming soon). <br>
+You may also <a href="./tags/">browse by tag</a>. <br>
You may be interested in my <a href=./meta/>meta</a> post. <br>
Thanks for stopping by! —Blaise
</p>
-
<p>
{% for post in posts %}
{{ post.date }}
<a href=./{{ post.path }}>{{ post.title }}</a>
+ {% for tag in post.tags %}
+ <a href="./tags/#{{ tag }}" style="color:#b294bb;font-style:italic;">#{{ tag }}</a>
+ {% endfor %}
<br>
{% endfor %}
</p>