generated from shgysk8zer0/static-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 987 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
25
26
27
28
29
30
31
32
33
34
35
---
layout: default
title: Home
pinned: true
description: A GitHub repository for easily creating fast, modern, PWA compatible websites
tags:
- jekyll
- pwa
- github template repo
prerender:
- href: /posts/2019/10/29/test/
---
<section class="pagination">
<div class="grid grid-gallery">
{% for post in paginator.posts %}
<div class="article-preview card shadow-dark">
{% include articles/post-preview.html post=post %}
</div>
{% endfor %}
</div>
{% if paginator.previous_page or paginator.next_page %}
<footer class="paginate-nav">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" rel="prev" role="button" title="Previous page">
{% include common/icon.html icon='prev' %}
</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" role="button" rel="next" title="Next page">
{% include common/icon.html icon='next' %}
</a>
{% endif %}
</footer>
{% endif %}
</section>