mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
aider: Add a date to each blog entry.
# Aider chat conversation: USER: add a date to each blog entry ASSISTANT: ```diff --- blog/index.html +++ blog/index.html @@ ... @@ <div class="posts"> {% for post in site.posts %} <article class="post"> + <p class="post-date">{{ post.date | date: "%b %-d, %Y" }}</p> <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1> <div class="entry"> {% if post.excerpt %} ```
This commit is contained in:
parent
265e71010f
commit
65d43dff0f
1 changed files with 1 additions and 0 deletions
|
@ -5,6 +5,7 @@ layout: default
|
|||
<div class="posts">
|
||||
{% for post in site.posts %}
|
||||
<article class="post">
|
||||
<p class="post-date">{{ post.date | date: "%b %-d, %Y" }}</p>
|
||||
|
||||
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue