Skip to content

Latest commit

 

History

History
37 lines (33 loc) · 1.06 KB

File metadata and controls

37 lines (33 loc) · 1.06 KB
layout page
title Articles
last_modified_at 2020-05-08 18:00:00 +0000
permalink /articles/
redirect_from /archive/
    {% for post in site.posts %}
  • {{ post.date | date: '%Y-%m-%d' }} {{ post.title }}
  • {% endfor %}

{%- if site.posts.size > 0 -%}

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

        {%- if site.show_excerpts -%}
          {%- if post.excerpt -%}
            <span>{{ post.excerpt | remove: '<p>' | remove: '</p>' }}<a href="{{ post.url | relative_url }}">{{ site.excerpt_link_text | escape }}</a></span>
          {%- endif -%}
        {%- endif -%}
      </li>
      {%- endfor -%}
    </ul>
    

    {%- endif -%}