aider: Make post.date uppercase.

# Aider chat conversation:

USER: make post.date uppercase

ASSISTANT: ```diff
--- blog/index.html
+++ blog/index.html
@@ ... @@
       <p class="post-date">
-          {{ post.date | date: "%b %-d, %Y" }}
+          {{ post.date | date: "%b %-d, %Y" | upcase }}
       </p>
     </article>
   {% endfor %}
 </div>
```
This commit is contained in:
Paul Gauthier 2024-02-19 14:39:44 -08:00
parent 5bc3970319
commit 624d61f2c4

View file

@ -15,7 +15,7 @@ layout: default
</div>
<p class="post-date">
{{ post.date | date: "%b %-d, %Y" }}
{{ post.date | date: "%b %-d, %Y" | upcase }}
</p>
</article>
{% endfor %}