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.
26 lines
616 B
26 lines
616 B
---
|
|
layout: default
|
|
---
|
|
{% include header.html %}
|
|
<div class="blog-index">
|
|
{% assign index = true %}
|
|
{% for post in paginator.posts %}
|
|
{% assign content = post.content %}
|
|
<article>
|
|
{% include article.html %}
|
|
</article>
|
|
{% unless post == paginator.posts.last %}
|
|
<hr>
|
|
{% endunless %}
|
|
{% endfor %}
|
|
<div class="pagination">
|
|
{% if paginator.next_page %}
|
|
<a class="prev" href="{{paginator.next_page}}">← Older</a>
|
|
{% endif %}
|
|
|
|
{% if paginator.previous_page %}
|
|
<a class="next" href="{{paginator.previous_page}}">Newer →</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
|