diff options
| author | Brandon Mathis <brandon@imathis.com> | 2011-08-10 18:14:56 -0400 |
|---|---|---|
| committer | Brandon Mathis <brandon@imathis.com> | 2011-08-10 18:15:10 -0400 |
| commit | 0e072543dad52537ad2f445b5c718488c379144c (patch) | |
| tree | 7828aaa7f256a70d9a62bac01b5b0a3e74b5fd84 /.themes/classic/source/_includes | |
| parent | 9c2f64d20cd881054abe09247c26162118afe541 (diff) | |
| download | my_new_personal_website-0e072543dad52537ad2f445b5c718488c379144c.tar.xz my_new_personal_website-0e072543dad52537ad2f445b5c718488c379144c.zip | |
added support for preserving customized source/index.html during template updates. Moved the blog index code to a partial in source/_includes/blog_index.html
Diffstat (limited to '.themes/classic/source/_includes')
| -rw-r--r-- | .themes/classic/source/_includes/blog_index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.themes/classic/source/_includes/blog_index.html b/.themes/classic/source/_includes/blog_index.html new file mode 100644 index 00000000..c77ea7d0 --- /dev/null +++ b/.themes/classic/source/_includes/blog_index.html @@ -0,0 +1,40 @@ +<div class="blog-index"> +{% assign index = true %} +{% for post in paginator.posts %} +{% assign content = post.content %} + <article> + {% include article.html %} + </article> +{% endfor %} +<nav role="pagination"> + <div> + {% if paginator.next_page %} + <a class="prev" href="/page{{paginator.next_page}}/">← Older</a> + {% endif %} + <a href="/blog/archives">Blog Archives</a> + {% if paginator.previous_page and paginator.previous_page > 1 %} + <a class="next" href="/page{{paginator.previous_page}}/">Newer →</a> + {% elsif paginator.previous_page %} + <a class="next" href="/">Newer →</a> + {% endif %} + </div> +</nav> +{% 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 %} +</div> +<aside role=sidebar> + {% if site.blog_index_asides.size %} + {% include_array blog_index_asides %} + {% else %} + {% include_array default_asides %} + {% endif %} +</aside> |
