-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.01 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
---
layout: default
---
<header class="index">
<h1 class="page-title">
#<span id="tag-container"></span><span class="blinking">|</span>
</h1>
{% include contact-links.html %}
</header>
<main>
<div class="posts-list">
{% for post in paginator.posts %}
<div class="post-thumb">
<a class="post-title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<div class="post-date">{{ post.date | date: "%B %e, %Y" }}</div>
</div>
{% endfor %}
</div>
{% if paginator.previous_page or paginator.next_page %}
<div class="pages-navigation">
<div class="next-page">
{% if paginator.previous_page %}
<a class="button" href="{{ site.baseurl }}{{ paginator.previous_page_path }}">Newer</a>
{% endif %}
</div>
<div class="previous-page">
{% if paginator.next_page %}
<a class="button" href="{{ site.baseurl }}{{ paginator.next_page_path }}">Older</a>
{% endif %}
</div>
</div>
{% endif %}
</main>