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.
32 lines
950 B
32 lines
950 B
14 years ago
|
---
|
||
|
layout: default
|
||
14 years ago
|
blog_index: true
|
||
14 years ago
|
---
|
||
|
{% assign index = true %}
|
||
14 years ago
|
{% for post in paginator.posts %}
|
||
|
{% assign content = post.content %}
|
||
14 years ago
|
<article>
|
||
|
{% include article.html %}
|
||
|
</article>
|
||
|
{% endfor %}
|
||
14 years ago
|
<nav role="pagination">
|
||
|
{% if paginator.next_page %}
|
||
|
<a href="/page{{paginator.next_page}}/">← Older</a>
|
||
|
{% endif %}
|
||
|
<a href="/archive.html">Blog Archive</a>
|
||
|
{% if paginator.previous_page %}
|
||
|
<a href="/page{{paginator.previous_page}}/">Newer →</a>
|
||
|
{% endif %}
|
||
|
</nav>
|
||
14 years ago
|
{% 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 %}
|