-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 1010 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: default
title: titles.home
description: description
---
<h1 class="page-title">{% t recent_posts %}</h1>
<div class="posts">
{% for post in paginator.posts %}
{% include post_snippet.jekyll %}
{% endfor %}
</div>
<div class="pagination">
{% if paginator.next_page %}
<a class="pagination-item older" href="{{ paginator.next_page_path | relative_url }}" title="{% t older %}">Older</a>
{% else %}
<span class="pagination-item older" title="{% t older %}">{% t older %}</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="{{ '/' | relative_url }}" title="{% t newer %}">Newer</a>
{% else %}
<a class="pagination-item newer" href="{{ paginator.previous_page_path | relative_url }}" title="{% t newer %}">Newer</a>
{% endif %}
{% else %}
<span class="pagination-item newer">{% t newer %}</span>
{% endif %}
</div>