From d37e9f0fa0cbf7b055f94c8ce0fb660b073a7e53 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 15 Apr 2023 10:18:58 -0700 Subject: [PATCH] fix: reverse tag post order; refactor display to match other post pages --- src/tagList.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/tagList.md b/src/tagList.md index e4e3fd03..25d7bf3d 100644 --- a/src/tagList.md +++ b/src/tagList.md @@ -9,9 +9,8 @@ eleventyComputed: title: '{{ tag }}' templateEngineOverride: liquid,md --- - -{% for post in collections[tag] %} - +{% assign posts = collections[tag] | reverse %} +{% for post in posts %}

-
- {{ post.date | date: "%m.%d.%Y" }} - +
+ +
+ {% if post.data.post_excerpt %} +

{{ post.data.post_excerpt | markdown }}

+ {% endif %} +