Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 671 Bytes

File metadata and controls

28 lines (25 loc) · 671 Bytes
layout page
title Archive
permalink /archive/
hidden true
{% assign archived_posts = site.posts | where_exp: "post", "post.hidden == true" | sort: "date" | reverse %} {% if archived_posts and archived_posts.size > 0 %} {% for post in archived_posts %}
{{ post.date | date_to_string }} {{ post.excerpt }}

{% endfor %} {% else %}

No archived posts yet.

{% endif %}