feat: show full date on index
This commit is contained in:
parent
9e4372cf3d
commit
ceedef8441
2 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue