-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.22 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
---
layout: default
title: "Jack Carpenter's Personal Blog"
description: "A blog for all things tech related using the cloud"
---
<ul class="article-list">
{% for post in paginator.posts %}
<li
class="article-list-item {% if site.scrollappear_enabled %}scrollappear{% endif %}"
>
<a href="{{ post.url | relative_url }}" title="{{ post.title }}">
<h5>
{{ post.title }} {% include svg-icon.html icon="arrow-right" %}
</h5>
</a>
<p>
{% if post.description %} {{ post.description }} {% else %} {{
post.excerpt }} {% endif %}
</p>
{% include article/info-footer.html post=post %}
</li>
{% endfor %} {% if paginator.total_pages > 1 %}
<li
class="article-pagination {% if site.settings.scrollappear_enabled %}scrollappear{% endif %}"
>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="article-pagination-left"
>{% include svg-icon.html icon="arrow-left" %} Older posts</a
>
{% endif %} {% if paginator.previous_page %}
<a
href="{{ paginator.previous_page_path }}"
class="article-pagination-right"
>Newer posts {% include svg-icon.html icon="arrow-right" %}</a
>
{% endif %}
</li>
{% endif %}
</ul>