diff options
author | Blaise Thompson <blaise@untzag.com> | 2021-01-23 17:55:19 -0600 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2021-01-23 17:55:19 -0600 |
commit | 910c22d071e0f2c0748f172b7318147e8a45201f (patch) | |
tree | 3e2b0715842c81f5221a9883da501b240d95bf2d /templates/index.html | |
parent | 64113bee2f3d5964bbeabfce09324d11f4d3c255 (diff) |
tags
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 6 |
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> |