Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 727 Bytes

archive.md

File metadata and controls

26 lines (24 loc) · 727 Bytes
layout title
page
Archive
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

<h3 class="category-head">{{ category_name }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article class="archive-item">
    <ul><li><time>{{ post.date | date:"%d %b %Y" }} - </time>
      <a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
        {{ post.title }}
      </a>
    </li></ul>
</article>
{% endfor %}
{% endfor %}