-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (35 loc) · 933 Bytes
/
index.html
File metadata and controls
50 lines (35 loc) · 933 Bytes
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: page
title: hackernauts
tagline: ego hack, ergo sum
---
{% include JB/setup %}
{% for post in paginator.posts %}
{% if post.linkedlist %}
<h2>
<a href=" {{post.url }} ">#! </a><a href="{{ post.baselink }}" style="color: #174A8B;">{{ post.title }}</a>
</h2>
{% else %}
<h2> <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a> </h2>
{% endif %}
<hr>
{{ post.content }}
<hr>
<br />
{% endfor %}
<div id="post-pagination" class="pagination">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/">Previous</a>
{% else %}
<a href="/page{{paginator.previous_page}}">Previous</a>
{% endif %}
{% else %}
<span>Previous</span>
{% endif %}
{% if paginator.next_page %}
| <a href="/page{{paginator.next_page}}">Next</a>
{% else %}
| <span>Next</span>
{% endif %}
</div>