-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 707 Bytes
/
index.html
File metadata and controls
23 lines (20 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
title: Deadmoose
---
{% for page in paginator.posts %}
{% assign content = page.content %}
{% assign include_disqus_link = true %}
{% include post_body.html %}
{% endfor %}
{% if paginator.next_page or paginator.previous_page %}
<div id="pagination" class="box">
{% if paginator.next_page %}
<div class="next"><a href="{{ paginator.next_page_path }}">← Older Posts</a></div>
{% endif %}
{% if paginator.previous_page %}
<div class="prev"><a href="{{ paginator.previous_page_path }}">Newer Posts →</a></div>
{% endif %}
</div>
{% endif %}
{% include disqus_comment_count.html %}