-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 834 Bytes
/
index.html
File metadata and controls
34 lines (29 loc) · 834 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
---
layout: default
title: Home
---
{% for post in paginator.posts %}
<div class="post type-post status-publish format-standard hentry category-general">
<h2><a href="{{ post.url }}" rel="bookmark">{{ post.title }}</a></h2>
<small>{{ post.date | date: "%A, %B %d, %Y" }}</small>
<div class="entry">
{{ post.content }}
</div>
<p class="postmetadata"></p>
</div>
{% endfor %}
<div class="navigation">
{% if paginator.next_page %}
<div class="alignleft">
<a href="{{ paginator.next_page_path }}">← older posts</a>
</div>
{% endif %}
{% if paginator.previous_page %}
<div class="alignright">
<a href="{% if paginator.previous_page == 1 %}/{% else %}
{{ paginator.previous_page_path }}
{% endif %}">
newer posts →</a>
</div>
{% endif %}
</div>