diff options
author | HombreLaser <buran@silosneeded.com> | 2024-05-07 22:57:27 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-05-07 22:57:27 -0600 |
commit | 31aff186969a6e1da1d5d2f456a146643d4b99b1 (patch) | |
tree | f4658ca132713327ab5e3236964cf42b6068b9a1 /_includes/index.liquid | |
parent | c56290d9961e518f027b6f7efaabac92e1e4c388 (diff) |
Improve date rendering
Diffstat (limited to '_includes/index.liquid')
-rw-r--r-- | _includes/index.liquid | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/_includes/index.liquid b/_includes/index.liquid index b172823..fe7567f 100644 --- a/_includes/index.liquid +++ b/_includes/index.liquid @@ -6,6 +6,10 @@ {{ post.title }} </a> </h1> + <h2> + {% capture month%}{{ post.date | date: "%b" }}{% endcapture %} + {{ site.data[site.active_lang].strings.date[month]}} {{ post.date | date: "%e, %Y" }} + </h2> <span> {{ post.excerpt }} </span> |