-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (60 loc) · 1.67 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
---
layout: default
katex: true
pagination:
enabled: true
per_page: 5
sort_field: date
sort_reverse: true
title: ':title (page :num)'
permalink: '/page/:num/'
---
<div class="home">
{%- if site.posts.size > 0 -%}
{%- if page.list_title -%}
<h2>{{ page.list_title }}</h2>
{%- endif %}
<div class="post-list">
{%- for post in paginator.posts -%}
{%- if post.hidden -%}
{%- continue -%}
{%- endif -%}
<div class="post-list-item">
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<span class="post-meta">
<time datetime="{{ post.date | date_to_xmlschema }}">
{{- post.date | date: date_format -}}
</time>
</span>
<h2>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h2>
{%- if site.show_excerpts -%}
{{- post.excerpt -}}
{%- if post.content contains site.excerpt_separator -%}
<p class="excerpt-warning">
<a href="{{ post.url | relative_url }}">Read more →</a>
</p>
{%- endif -%}
{%- endif -%}
</div>
{%- endfor -%}
</div>
{% if paginator.total_pages > 1 -%}
<div class="page-switcher">
<div>
{%- if paginator.previous_page -%}
<a href="{{ paginator.previous_page_path | relative_url }}">Previous page</a>
{%- endif -%}
</div>
<div>
{%- if paginator.next_page -%}
<a href="{{ paginator.next_page_path | relative_url }}">Next page</a>
{%- endif -%}
</div>
</div>
{%- endif %}
{%- endif %}
</div>