My personal blog
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.

30 lines
570 B

11 years ago
---
layout: page
title: Blog Archive
footer: false
---
<div clas id="blog-archives">
11 years ago
{% 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>
11 years ago
{% endfor %}
</div>