-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (85 loc) · 2.89 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
<title>CREA Blog</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>CREA Blog</h1>
</div>
</div>
<div class="row">
<div class="col-md-12">
{% if paginator.posts.size > 0 %}
{% for post in paginator.posts %}
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p class="author">
<span class="date">{{ post.date | date: '%B %d, %Y' }}</span>
<span>|</span>
<span>Author: {{ post.author }}</span>
</p>
<div>
<p>{{ post.excerpt }}</p>
</div>
{% endfor %}
{% else %}
<p>There are no blog posts currently available.</p>
{% endif %}
</div>
</div>
<div class="row">
<div class="col-md-12">
<!-- Bootstrap style pagination -->
<div class="text-center">
{% if paginator.total_pages > 1 %}
<nav>
<ul class="pagination">
{% if paginator.previous_page %}
<li>
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
{% else %}
<li class="disabled">
<a href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<li class="active"><a href="#">{{ page }}</a></li>
{% elsif page == 1 %}
<li><a href="{{ '/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a></li>
{% else %}
<li><a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a></li>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<li>
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
{% else %}
<li class="disabled">
<a href="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
{% endif %}
</ul>
</nav>
{% endif %}
</div>
</div>
</div>
</div>
</body>
</html>