| 1 | 1 |
deleted file mode 100644 |
| ... | ... |
@@ -1,40 +0,0 @@ |
| 1 |
-<div class="blog-index"> |
|
| 2 |
-{% assign index = true %}
|
|
| 3 |
-{% for post in paginator.posts %}
|
|
| 4 |
-{% assign content = post.content %}
|
|
| 5 |
- <article> |
|
| 6 |
- {% include article.html %}
|
|
| 7 |
- </article> |
|
| 8 |
-{% endfor %}
|
|
| 9 |
-<nav role="pagination"> |
|
| 10 |
- <div> |
|
| 11 |
- {% if paginator.next_page %}
|
|
| 12 |
- <a class="prev" href="/page{{paginator.next_page}}/">← Older</a>
|
|
| 13 |
- {% endif %}
|
|
| 14 |
- <a href="/blog/archives">Blog Archives</a> |
|
| 15 |
- {% if paginator.previous_page and paginator.previous_page > 1 %}
|
|
| 16 |
- <a class="next" href="/page{{paginator.previous_page}}/">Newer →</a>
|
|
| 17 |
- {% elsif paginator.previous_page %}
|
|
| 18 |
- <a class="next" href="/">Newer →</a> |
|
| 19 |
- {% endif %}
|
|
| 20 |
- </div> |
|
| 21 |
-</nav> |
|
| 22 |
-{% if site.disqus_short_name %}
|
|
| 23 |
-<script type="text/javascript"> |
|
| 24 |
- var disqus_shortname = '{{ site.disqus_short_name }}';
|
|
| 25 |
- (function () {
|
|
| 26 |
- var s = document.createElement('script'); s.async = true;
|
|
| 27 |
- s.type = 'text/javascript'; |
|
| 28 |
- s.src = 'http://' + disqus_shortname + '.disqus.com/count.js'; |
|
| 29 |
- (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
|
|
| 30 |
- }()); |
|
| 31 |
-</script> |
|
| 32 |
-{% endif %}
|
|
| 33 |
-</div> |
|
| 34 |
-<aside role=sidebar> |
|
| 35 |
- {% if site.blog_index_asides.size %}
|
|
| 36 |
- {% include_array blog_index_asides %}
|
|
| 37 |
- {% else %}
|
|
| 38 |
- {% include_array default_asides %}
|
|
| 39 |
- {% endif %}
|
|
| 40 |
-</aside> |