mirror-crappy-reverie/_pages/archive.md
josh-justjosh cd9462dee1 Adds a Post Archive
Adds a simple page listing all posts on the site split into months
2021-02-20 00:05:20 +00:00

1.2 KiB

layout permalink title
page /archive/ Posts Archive

Most Recent Posts

{%for post in site.posts %} {% unless post.next %}
    {% else %} {% capture month %}{{ post.date | date: '%B %Y' }}{% endcapture %} {% capture nmonth %}{{ post.next.date | date: '%B %Y' }}{% endcapture %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} {% if year != nyear %}

{{ post.date | date: '%Y' }}

    {% endif %} {% if month != nmonth %}

    {{ post.date | date: '%B %Y' }}

    {% endif %} {% endunless %}

    {% if post.title and post.title != "" %}{{post.title}}{% else %}{{post.excerpt |strip_html}}{%endif%} - {% if post.date and post.date != "" %}{{ post.date | date: "%e %B %Y" }}{%endif%}

    {% endfor %}

Oldest Posts