summaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorAlexis Hovorka <[email protected]>2022-10-25 16:38:14 -0600
committerAlexis Hovorka <[email protected]>2022-10-25 16:38:14 -0600
commitc2dc2e772e76a0baebf5e8042e5cdd3889bdd6cd (patch)
tree2d93c25e72a079b2ab27624173482c1ba08f73c9 /posts
parentabe43ca47608a5274085240e73597eda969fb829 (diff)
[fix] Patch up a couple oversights
Diffstat (limited to 'posts')
-rw-r--r--posts/tags.njk2
1 files changed, 2 insertions, 0 deletions
diff --git a/posts/tags.njk b/posts/tags.njk
index cba0555..f984630 100644
--- a/posts/tags.njk
+++ b/posts/tags.njk
@@ -21,6 +21,8 @@ eleventyComputed:
{% for post in taglist | reverse %}
<section>
<h2><a href="{{ post.url }}">{{ post.data.title }}</a></h2>
+ {%- set postDate = post.date.toISOString().slice(0,10) %}
+ <p class="post-date"><time datetime="{{ postDate }}">{{ postDate }}</time></p>
{{ post | excerpt | safe }}
</section>
<hr>