-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (44 loc) · 1.45 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
---
layout: default
pagination:
enabled: true
---
<div class="header-bar">
<h1>see pha </h1>
<h2>whistle for level crossing</h2>
<br/>
<hr>
<br/>
</div>
<ul class="post-list">
{% for post in paginator.posts %}
<li>
<h2><a class="post-title" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
<p class="post-meta">{{ post.date | date: '%B %-d, %Y' }}</p>
{% if site.show_full_posts %}
<p>{{ post.content }}
{% else %}
<p>{{ post.excerpt }}
<a class="continue-button" href="{{ post.url | prepend: site.baseurl }}">
• • •
</a>
{% endif %}
</p>
<hr/>
</li>
{% endfor %}
</ul>
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="previous"><i class="fa fa-angle-double-left"></i> Newer</a>
{% else %}
<span class="previous"></span>
{% endif %}
<!-- <span class="page_number "> • {{ paginator.page }} / {{ paginator.total_pages }} • </span> -->
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="next">Older <i class="fa fa-angle-double-right"></i></a>
{% else %}
<span class="next "></span>
{% endif %}
</div>