Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 905 Bytes

File metadata and controls

36 lines (31 loc) · 905 Bytes
layout default
title Archive
{%- if page.title -%}

{{ page.title }}

{%- endif -%}

{% assign posts = site.posts | where_exp: "item", "item.archived == true" %}

{%- if posts.size > 0 -%} {%- if page.list_title -%}

{{ page.list_title }}

{%- endif -%}
    {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} {%- for post in posts -%}
  • {{ post.date | date: date_format }} {%- if site.show_excerpts -%} {{ post.excerpt }} {%- endif -%}
  • {%- endfor -%}

{%- endif -%}