22 lines
614 B
HTML
22 lines
614 B
HTML
---
|
|
title: Archive
|
|
permalink: "/archive/"
|
|
search: exclude
|
|
related_pages: none
|
|
---
|
|
<div class="page-archive">
|
|
{% for post in site.posts %}
|
|
{% assign post_month_year = post.date | date: "%B %Y" %}
|
|
{% assign newer_post_month_year = post.next.date | date: "%B %Y" %}
|
|
{% if post_month_year != newer_post_month_year %}
|
|
<h3 class="section-header-archive">
|
|
{{ post_month_year }}
|
|
</h3>
|
|
{% endif %}
|
|
<p>
|
|
<a href="{{ post.url | prepend:site.baseurl}}" class="post-title-archive">{{ post.title }}</a>
|
|
<small class="text-muted">{{ post.date | date_to_string }}</small>
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|