-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (23 loc) · 841 Bytes
/
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
---
layout: default
---
{% as#dex = true %}
<div itemscope itemtype="http://schema.org/Blog">
{% for post in paginator.posts %}
{% unless post.redirect %}
{% assign content = post.content %}
<article class="post" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
{% include article.html %}
</article>
{% endunless %}
{% endfor %}
</div>
<nav id="pagenavi">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' | replace: 'index.html', '' }}" class="prev">Prev</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="next">Next</a>
{% endif %}
<div class="center"><a href="/archive">Blog Archives</a></div>
</nav>