extreme-tech-seminar.github.io/archive.html

27 lines
622 B
HTML
Raw Normal View History

2014-05-01 15:21:48 +00:00
---
layout: page
2014-05-01 15:59:21 +00:00
title: Archive
2014-05-01 15:21:48 +00:00
---
<div class="page-blank">
<div class="page-list">
<ul>
{% for post in site.posts %}
{% capture post_year2 %}{{ post.date | date: '%Y' }}{% endcapture %}
{% if post_year1 != post_year2 %}
{% assign post_year1 = post_year2 %}
</ul>
</div>
<div class="page-list">
<h3>{{ post_year1 }}</h3>
<ul>
{% endif %}
<li>
2014-05-01 15:59:21 +00:00
<span>{{ post.date | date:"%Y-%m-%d" }} </span>
2014-05-01 15:21:48 +00:00
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>