-
Notifications
You must be signed in to change notification settings - Fork 158
/
index.html
71 lines (61 loc) · 2.2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
layout: default
---
<div class="posts">
{% for post in paginator.posts %}
{% assign post_url = post.url | append: '/' | replace: '//', '/' | prepend: site.baseurl | prepend: site.url | %}
<article class="post">
{% if post.banner_image %}
<div class="banner-image">
<a href="{{ post_url }}"
title="{{ post.title }}">
<img
src="{{ "/assets/images/" | append: post.banner_image | prepend: site.baseurl | prepend: site.url }}"
alt="{% if post.banner_image_alt %}{{ post.banner_image_alt }}{% else %}{{ post.title }} {% endif %}">
</a>
</div>
{% endif %}
<h1 class="post-title">
<a href="{{ post.url | append: '/' | replace: '//', '/' | prepend: site.baseurl | prepend: site.url | }}">
{{ post.title }}
</a>
</h1>
<p class="post-meta">
{% if (post.categories.size > 0 %}
<span class="categories">
{{ post.categories | array_to_sentence_string }}
</span> |
{% endif %}
<span class="post-date">
{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}
</span>
</p>
{{ post.excerpt }}
<a href="{{ post.url | append: '/' | replace: '//', '/' | prepend: site.baseurl | prepend: site.url | }}">
Continue reading »
</a>
</article>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.next_page %}
<a class="pagination-item older btn" href="{{ paginator.next_page_path | prepend: site.baseurl | append: '/' | replace: '//', '/' }}">Older</a>
{% else %}
<span class="pagination-item older btn-disabled">Older</span>
{% endif %}
{% if paginator.previous_page %}
<a class="pagination-item newer btn " href="{{ paginator.previous_page_path | prepend: site.baseurl | append: '/' | replace: '//', '/' }}">Newer</a>
{% else %}
<span class="pagination-item newer btn-disabled">Newer</span>
{% endif %}
</div>
{% endif %}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "{{ '' | prepend: site.baseurl | prepend: site.url | append: '/' }}"
}
}
</script>