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.
31 lines
778 B
31 lines
778 B
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="blog-index">
|
|
{% assign index = true %}
|
|
{% for post in paginator.posts %}
|
|
{% assign content = post.content %}
|
|
<article>
|
|
{% include article.html %}
|
|
</article>
|
|
{% endfor %}
|
|
<nav class="pagination">
|
|
<div>
|
|
{% if paginator.next_page %}
|
|
<a class="prev" href="{{paginator.next_page}}">← Older</a>
|
|
{% endif %}
|
|
<a href="/blog/archives">Blog Archives</a>
|
|
{% if paginator.previous_page %}
|
|
<a class="next" href="{{paginator.previous_page}}">Newer →</a>
|
|
{% endif %}
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
<aside class="sidebar">
|
|
{% if site.blog_index_asides.size %}
|
|
{% include_array blog_index_asides %}
|
|
{% else %}
|
|
{% include_array default_asides %}
|
|
{% endif %}
|
|
</aside>
|
|
|