Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 606 Bytes

archive.md

File metadata and controls

35 lines (24 loc) · 606 Bytes
layout title permalink
default
Archive
/archive/

Archive

{% for category in site.categories %}
<div class="category-name">
  <h2>{{ category | first }}</h2>
</div>
{% for post in category.last %}

<div class="post_title">
  <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title}}</a>
  <span class="date">{{ post.date | date: "%-d %b, %Y" }}</span>
</div>

{% endfor %}

{% endfor %}
{% include author.html %}