This commit is contained in:
Paul Gauthier 2024-02-11 08:09:40 -08:00
parent c37eaebc48
commit 97f0805c8d

View file

@ -5,7 +5,6 @@ layout: default
<div class="posts"> <div class="posts">
{% for post in site.posts %} {% for post in site.posts %}
<article class="post"> <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> <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry"> <div class="entry">
{% if post.excerpt %} {% if post.excerpt %}
@ -15,7 +14,9 @@ layout: default
{% endif %} {% endif %}
</div> </div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a> <a href="{{ site.baseurl }}{{ post.url }}" class="read-more">
<p class="post-date">{{ post.date | date: "%b %-d, %Y" }}</p>
</a>
</article> </article>
{% endfor %} {% endfor %}
</div> </div>