From 6b00edc4a3c30cd911c69d871c1359d43a85fc56 Mon Sep 17 00:00:00 2001 From: Stefan de Lange <37669773+langestefan@users.noreply.github.com> Date: Mon, 24 Feb 2025 15:15:19 +0100 Subject: [PATCH] Fix typo in -> on (#3029) Fixed a small typo in `post.liquid`. --- _layouts/post.liquid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/post.liquid b/_layouts/post.liquid index 35c84bc..dc8a793 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -18,9 +18,9 @@ layout: default

{{ page.title }}

- Created in {{ page.date | date: '%B %d, %Y' }} + Created on {{ page.date | date: '%B %d, %Y' }} {% if page.author %}by {{ page.author }}{% endif %} - {% if page.last_updated %}, last updated in {{ page.last_updated | date: '%B %d, %Y' }}{% endif %} + {% if page.last_updated %}, last updated on {{ page.last_updated | date: '%B %d, %Y' }}{% endif %} {% if page.meta %}• {{ page.meta }}{% endif %}