From 1cb5231a5cf7b139d1867025b5e8cf448ff511e3 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 12 Jan 2026 21:58:34 -0700 Subject: [PATCH] Show both the article date and release date, with the article dates staying in line and the release dates having an arrow pointed to them. --- layouts/_default/list.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 5fc13ee..a87de41 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -106,11 +106,28 @@ {{ end }} + {{/* {{ if .Site.Params.dateformShort }} {{ time.Format .Site.Params.dateformShort $date }} {{ else }} {{ time.Format "Jan 2" $date }} {{ end }} + */}} + + {{ if .Params.Release }} + {{ if .Site.Params.dateformShort }} + {{ time.Format .Site.Params.dateformShort .Params.release }} + {{ else }} + {{ time.Format "Jan 2" .Params.release }} + {{ end }} + <- + {{ end }} + + {{ if .Site.Params.dateformShort }} + {{ time.Format .Site.Params.dateformShort .Date }} + {{ else }} + {{ time.Format "Jan 2" .Date }} + {{ end }}