-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·72 lines (70 loc) · 2.02 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
---
layout: default
title: Mainpage
---
<!-- Content
================================================== -->
<div class="top-strip"></div>
<div class="content">
<main class="container">
<div class="row-fluid">
<section class="content">
<h1>/\ssert</h1>
</section>
<ul class="entries">
{% for post in paginator.posts %}
<li>
<a href="{{ post.url }}">
<span>{{ post.date | date: "%d %B %Y" }}</span>
<h3>{{ post.title }}</h3>
<div>{{ post.content |truncatehtml | truncatewords: 30 }}</div>
</a>
</li>
{% endfor %}
</ul>
</div>
<hr>
<div id="post-pagination">
{% if paginator.previous_page %}
<p class="prev">
{% if paginator.previous_page == 1 %}
<a href="/">Previous</a>
{% else %}
<a href="/page{{paginator.previous_page}}"> Previous</a>
{% endif %}
</p>
{% else %}
<!-- <p class="prev disabled">
<span>Previous</span>
</p> -->
{% endif %}
<ul class="pages">
<li class="page">
{% if paginator.page == 1 %}
<!-- <span class="current-page">1</span> -->
{% else %}
<a href="/">1</a>
{% endif %}
</li>
{% for count in (2..paginator.total_pages) %}
<li class="page">
{% if count == paginator.page %}
<span class="current-page">{{count}}</span>
{% else %}
<a href="/page{{count}}">{{count}}</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% if paginator.next_page %}
<p class="next">
<a href="/page{{paginator.next_page}}">Next</a>
</p>
{% else %}
<!-- <p class="next disabled">
<span>Next</span>
</p> -->
{% endif %}
</div>
</main>
</div>