-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (27 loc) · 692 Bytes
/
index.html
File metadata and controls
34 lines (27 loc) · 692 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:
---
<div id="home">
<!--
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
-->
{% for post in paginator.posts %}
<h3><a href="{{post.url}}"> {{ post.title }} </a></h3>
<div id="post">
{{ post.content }}
</div>
<div class="date"><a href="{{ post.url }}">{{ post.date | date: "%d %B %Y" }}</a></div>
<hr/>
{% endfor %}
{% if paginator.next_page %}
<p>
<a href="/page{{ paginator.next_page }}" title="Archive">Earlier →</a>
</p>
{% endif %}
</div>