-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
executable file
·42 lines (34 loc) · 1.1 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
---
layout: default
title: Home
---
<br>
<div class="posts">
{% for post in paginator.posts %}
<div class="post">
<h1 class="post-title">
<a href="{{ post.url }}" target="_self">
{{ post.title }}
</a>
</h1>
<br>
<!--<span class="post-date">{{ post.date | date:'%Y.%m.%d' }}</span>-->
</div>
{% endfor %}
</div>
<div class="pagination">
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="/" target="_self"><i class="fa fa-caret-left fa-fw"></i></a>
{% else %}
<a class="pagination-item newer" href="/page{{paginator.previous_page}}" target="_self"><i class="fa fa-caret-left fa-fw"></i></a>
{% endif %}
{% else %}
<span class="pagination-item newer"><i class="fa fa-caret-left fa-fw"></i></span>
{% endif %}
{% if paginator.next_page %}
<a class="pagination-item older" href="/page{{paginator.next_page}}" target="_self"><i class="fa fa-caret-right fa-fw"></i></a>
{% else %}
<span class="pagination-item older"><i class="fa fa-caret-right fa-fw"></i></span>
{% endif %}
</div>