-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
47 lines (42 loc) · 1.63 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
---
layout: main
title: Глубокий Рефакторинг
---
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
{% if post.categories contains 'blog' %}
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p>
<small>{{ post.date | date: "%d.%m.%Y" }}</small>
</p>
<div class="content">
{{ post.content }}
</div>
<br>
<br>
<br>
{% endif %}
{% endfor %}
{% if paginator.total_pages > 1 %}
<div class="pagination">
<div class="btn-toolbar" role="toolbar" aria-label="Toolbar with button groups">
<div class="btn-group mr-2" role="group" aria-label="First group">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="btn btn-link">Предыдущая</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<button type="button" class="btn btn-primary">{{ page }}</button>
{% elsif page == 1 %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="btn btn-link">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="btn btn-link">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="btn btn-link">Следущая</a>
{% endif %}
</div>
</div>
</div>
{% endif %}