mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
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:
parent
5bc3970319
commit
624d61f2c4
1 changed files with 1 additions and 1 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue