From 287d4736bb0f99678b82accabb2797e070d21039 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Fri, 15 Nov 2024 16:53:23 -0600 Subject: [PATCH] Minor tweaks --- _includes/layouts/base.njk | 2 +- _includes/postslist.njk | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/layouts/base.njk b/_includes/layouts/base.njk index 57a29a2..7a54534 100644 --- a/_includes/layouts/base.njk +++ b/_includes/layouts/base.njk @@ -63,7 +63,7 @@

Built with {{ eleventy.generator }}

- + diff --git a/_includes/postslist.njk b/_includes/postslist.njk index 99272c5..7ff7c6b 100644 --- a/_includes/postslist.njk +++ b/_includes/postslist.njk @@ -1,9 +1,9 @@ {%- css %}.postlist { counter-reset: start-from {{ (postslistCounter or postslist.length) + 1 }} }{% endcss %}
    -{% for post in postslist | reverse %} +{%- for post in postslist | reverse %}
  1. {% if post.data.title %}{{ post.data.title }}{% else %}{{ post.url }}{% endif %}
  2. -{% endfor %} +{%- endfor %}