1. Updated config so blog categories get ouput to /blog/categories

2. Increased default pagination to 10 posts per page
3. Explained email address for RSS feed better
This commit is contained in:
Brandon Mathis
2011-07-01 17:13:21 -04:00
parent ea349cdfbf
commit b9ad060b5d
2 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1,17 @@
---
layout: post
title: Blog Archive
no_meta: true
---
<div class="blog-archives">
{% for post in site.posts reverse %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h2>{{ year }}</h2>
{% endunless %}
<article>
{% include archive_post.html %}
</article>
{% endfor %}
</div>