From 018c74cad3e40960984a2614742d108391a45041 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Mon, 12 May 2025 12:27:08 +0100 Subject: [PATCH] [2025-05-12] Make date and reading time float right in post header --- _layouts/post.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/post.html b/_layouts/post.html index 6ed4107..b77e537 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,9 +1,9 @@ --- layout: default --- -~ / {{page.category}} / {{page.title}}
- - {{ page.date | date: "%Y-%m-%d" }}
+~ / {{page.category}} / {{page.title}} + + {{ page.date | date: "%Y-%m-%d" }} | {{ content | reading_time | pluralize: "minute" }}