-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
76 lines (68 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
layout: page
css: ["index.css"]
permalink: /
---
<div class="row">
<div>
{% include search_form.html %}
</div>
<div class="thi-columns">
<ul class="tag-post">
{% for post in paginator.posts %}
<a class="post-title" href="{{ site.baseurl }}{{ post.url }}">
<li>
{{ post.title }} <small class="post-date">{{post.date | date: "%d/%m/%Y"}}</small>
</li>
</a>
{% endfor %}
</ul>
</div>
<div class="col s12 center-align">
<ul class="pagination">
<li class="{% unless paginator.previous_page %}disabled{% else %}waves-effect{% endunless %}">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="{{site.baseurl}}/">
{% else %}
<a href="{{site.baseurl}}/page{{paginator.previous_page}}">
{% endif %}
{% else %}
<a href="#!">
{% endif %}
<i class="material-icons">chevron_left</i>
</a>
</li>
{% if paginator.page == 1 %}
<li class="active teal">
<a href="#!">1</a>
{% else %}
<li class="waves-effect">
<a href="{{site.baseurl}}/">1</a>
{% endif %}
</li>
{% for count in (2..paginator.total_pages) %}
{% if count == paginator.page %}
<li class="active teal"><a href="#!">{{count}}</a></li>
{% else %}
<li class="waves-effect"><a href="{{site.baseurl}}/page{{count}}">{{count}}</a></li>
{% endif %}
{% endfor %}
<li class="{% unless paginator.next_page %}disabled{% else %}waves-effect{% endunless %}">
{% if paginator.next_page %}
<a href="{{site.baseurl}}/page{{paginator.next_page}}">
{% else %}
<a href="#!">
{% endif %}
<i class="material-icons">chevron_right</i>
</a>
</li>
</ul>
</div>
<div class="tag-div">
<h2 class="h2-title">References</h2>
</div>
<div class="thi-columns">
{% bibliography %}
</div>
</div>