From 624d61f2c4d40945783c82b0d42eaab4027b6984 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 19 Feb 2024 14:39:44 -0800 Subject: [PATCH] aider: Make post.date uppercase. # Aider chat conversation: USER: make post.date uppercase ASSISTANT: ```diff --- blog/index.html +++ blog/index.html @@ ... @@

- {{ post.date | date: "%b %-d, %Y" }} + {{ post.date | date: "%b %-d, %Y" | upcase }}

{% endfor %} ``` --- blog/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/index.html b/blog/index.html index e8a64b3b3..1842e8fa5 100644 --- a/blog/index.html +++ b/blog/index.html @@ -15,7 +15,7 @@ layout: default

- {{ post.date | date: "%b %-d, %Y" }} + {{ post.date | date: "%b %-d, %Y" | upcase }}

{% endfor %}