mirror of
https://github.com/danbee/danbarber.me
synced 2025-03-04 08:59:10 +00:00
32 lines
644 B
HTML
32 lines
644 B
HTML
---
|
|
layout: default
|
|
pagination:
|
|
enabled: true
|
|
---
|
|
|
|
{% assign index = true %}
|
|
|
|
{% include header.html %}
|
|
|
|
<div id="content">
|
|
{% for post in paginator.posts %}
|
|
{% assign content = post.content %}
|
|
|
|
<article class="article">
|
|
{% include index_article.html %}
|
|
</article>
|
|
{% endfor %}
|
|
|
|
<div class="container pagination">
|
|
{% if paginator.next_page %}
|
|
<a class="prev" href="{{ paginator.next_page_path }}">← Older</a>
|
|
{% endif %}
|
|
|
|
{% if paginator.previous_page %}
|
|
<a class="next" href="{{ paginator.previous_page_path }}">Newer →</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|