Tagalog-Diary/_layouts/home.html

27 lines
656 B
HTML

---
layout: default
---
<div class="catalogue">
{% for post in site.posts %}
{% if post.sticky %}
{% include catalogue_item.html sticky='true' %}
{% endif %}
{% endfor %}
{% for post in paginator.posts %}
{% include catalogue_item.html %}
{% endfor %}
</div>
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="left arrow">&#8592;</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="right arrow">&#8594;</a>
{% endif %}
<span>{{ paginator.page }}</span>
</div>