summaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorAlexis Hovorka <[email protected]>2024-08-17 19:32:06 -0600
committerAlexis Hovorka <[email protected]>2024-08-17 19:32:06 -0600
commitd2a685e50d20101a42b7d9d08d1b90bb92defcd3 (patch)
tree36d844396b638488f989aab9f2cba73b208fc0b2 /posts
parentf5890b7e14fd5c7d4aa11f089bfaf851a94a85a0 (diff)
[feat] Yet more tweaks
Diffstat (limited to 'posts')
-rw-r--r--posts/history.njk2
-rw-r--r--posts/tags.njk2
2 files changed, 2 insertions, 2 deletions
diff --git a/posts/history.njk b/posts/history.njk
index c3cdc50..cb18cbc 100644
--- a/posts/history.njk
+++ b/posts/history.njk
@@ -14,7 +14,7 @@
<h1>{{ metadata.title }} &mdash; Page {{ pagination.pageNumber + 1 }}</h1>
{% for post in posts %}
<hr>
- <section>
+ <section class="post-list">
<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>
diff --git a/posts/tags.njk b/posts/tags.njk
index f984630..8f3f8b6 100644
--- a/posts/tags.njk
+++ b/posts/tags.njk
@@ -19,7 +19,7 @@ eleventyComputed:
<hr>
{% set taglist = collections[ tag ] -%}
{% for post in taglist | reverse %}
- <section>
+ <section class="post-list">
<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>