feat: show full date on index

This commit is contained in:
Devin Haska 2024-02-25 20:24:44 -08:00
parent 9e4372cf3d
commit ceedef8441
2 changed files with 4 additions and 4 deletions

View file

@ -17,10 +17,10 @@ permalink: /
<p>Hand-picked, curated selection of my favourite posts!</p>
{% set favouritePosts = collections.post | filterFavourites | reverse %}
<section>
{{ list(favouritePosts) }}
{{ list(favouritePosts, "MM/DD/YYYY") }}
</section>
<h2>Recent posts</h2>
{% set recentPosts = collections.post | reverse | limit(5) %}
<section>
{{ list(recentPosts) }}
{{ list(recentPosts, "MM/DD/YYYY") }}
</section>