forked from web-work-tools/jekyll-indieweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (18 loc) · 749 Bytes
/
index.html
File metadata and controls
21 lines (18 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
bodyClass: home
header:
image: https://sourcecrypto.pub/decentralized-web/assets/images/Decentralized-Web-Histories.png
---
<div class="posts">
{% for post in paginator.posts %}
{% include post.html post=post %}
{% endfor %}
</div>
<div class="pagination" role="navigation">
{% if paginator.next_page %}
<a class="pagination-item older" href="{{ paginator.next_page_path | prepend: site.github.url }}">Older</a> {% else %}
<span class="pagination-item older">Older</span> {% endif %} {% if paginator.previous_page %}
<a class="pagination-item newer" href="{{ paginator.previous_page_path | prepend: site.github.url }}">Newer</a> {% else %}
<span class="pagination-item newer">Newer</span> {% endif %}
</div>