You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
570 B
29 lines
570 B
---
|
|
layout: page
|
|
title: Blog Archive
|
|
footer: false
|
|
---
|
|
|
|
<div clas id="blog-archives">
|
|
{% for post in site.posts reverse %}
|
|
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
|
<div class="row-fluid">
|
|
<div class="span1">
|
|
{% unless year == this_year %}
|
|
{% assign year = this_year %}
|
|
<h1>{{ year }}</h1>
|
|
{% endunless %}
|
|
</div>
|
|
{% if post == site.posts.first %}
|
|
<div class="span11">
|
|
{% else %}
|
|
<div class="span11 border-top">
|
|
{% endif %}
|
|
|
|
<article>
|
|
{% include archive_post.html %}
|
|
</article>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|