2011-06-07 16:12:46 -04:00
|
|
|
---
|
|
|
|
layout: default
|
2011-07-18 16:59:59 -04:00
|
|
|
meta: false
|
|
|
|
footer: false
|
2011-06-07 16:12:46 -04:00
|
|
|
---
|
2011-07-12 19:40:57 -04:00
|
|
|
<div class="blog-index">
|
2011-06-07 16:12:46 -04:00
|
|
|
{% assign index = true %}
|
2011-06-27 15:59:21 -04:00
|
|
|
{% for post in paginator.posts %}
|
|
|
|
{% assign content = post.content %}
|
2011-06-07 16:12:46 -04:00
|
|
|
<article>
|
|
|
|
{% include article.html %}
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
2011-06-24 17:17:35 -04:00
|
|
|
<nav role="pagination">
|
2011-07-13 22:23:19 -04:00
|
|
|
<div>
|
|
|
|
{% if paginator.next_page %}
|
2011-07-21 23:50:32 -04:00
|
|
|
<a class="prev" href="/page{{paginator.next_page}}/">← Older</a>
|
2011-07-13 22:23:19 -04:00
|
|
|
{% endif %}
|
2011-07-21 23:50:32 -04:00
|
|
|
<a href="/blog/archives">Blog Archives</a>
|
2011-07-13 22:23:19 -04:00
|
|
|
{% if paginator.previous_page and paginator.previous_page > 1 %}
|
2011-07-21 23:50:32 -04:00
|
|
|
<a class="next" href="/page{{paginator.previous_page}}/">Newer →</a>
|
2011-07-13 22:23:19 -04:00
|
|
|
{% elsif paginator.previous_page %}
|
2011-07-21 23:50:32 -04:00
|
|
|
<a class="next" href="/">Newer →</a>
|
2011-07-13 22:23:19 -04:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2011-06-24 17:17:35 -04:00
|
|
|
</nav>
|
2011-06-20 16:44:04 -04:00
|
|
|
{% if site.disqus_short_name %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
var disqus_shortname = '{{ site.disqus_short_name }}';
|
|
|
|
(function () {
|
|
|
|
var s = document.createElement('script'); s.async = true;
|
|
|
|
s.type = 'text/javascript';
|
|
|
|
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
|
|
|
|
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
|
|
|
|
}());
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
2011-07-12 19:40:57 -04:00
|
|
|
</div>
|