-
Notifications
You must be signed in to change notification settings - Fork 85
/
index.html
43 lines (41 loc) · 1.17 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
38
39
40
41
42
43
---
layout: default
title: Homepage
---
<div id="home">
<ul class="posts">
{% for post in paginator.posts %}
<li itemscope itemtype="http://schema.org/BlogPosting">
<a href="{{ site.baseurl }}{{ post.url }}" itemprop="url">
<div class="p-wrap">
<article class="inner">
<time datetime="{{ post.date | date_to_xmlschema }}"
itemprop="datePublished">
{{ post.date | date_to_string }}
</time>
<p itemprop="name headline">{{ post.title }}</p>
</article>
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.next_page %}
<a href="{{ site.baseurl }}/page/{{paginator.next_page}}" class="older">Older</a>
{% else %}
<span class="next">Older</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a href="{{ site.baseurl }}/" class="newer">Newer</a>
{% else %}
<a href="{{ site.baseurl }}/page/{{paginator.previous_page}}" class="newer">Newer</a>
{% endif %}
{% else %}
<span class="previous">Newer</span>
{% endif %}
</div>
{% endif %}