-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
72 lines (65 loc) · 2.15 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
72
---
layout: default
---
<div class="home">
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}
{%- if paginator.posts.size > 0 -%}
{%- if page.list_title -%}
<h2 class="post-list-heading">{{ page.list_title }}</h2>
{%- endif -%}
<ul class="post-list">
{%- for post in paginator.posts -%}
<li>
<span class="post-meta">{{ post.date | date: site.date_format }}</span>
<h3>
<a class="post-link"
href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
{{ post.excerpt }}
{% if post.excerpt != post.content %}
<p>
<a href="{{ post.url | relative_url }}">Read more</a>
</p>
{% endif %}
</li>
{%- endfor -%}
</ul>
{% if paginator.total_pages > 1 %}
<div class="pager">
<ul class="pagination">
{%- if paginator.previous_page %}
<li><a href="{{ paginator.previous_page_path | relative_url }}"
class="previous-page">«</a></li>
{%- else %}
<li>
<div class="pager-edge">«</div>
</li>
{%- endif %}
{% for page in (1..paginator.total_pages) %}
<li>
{% if page == paginator.page %}
<div class="current-page">{{ page }}</div>
{% elsif page == 1 %}
<a href="{{ '/' | relative_url }}">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | relative_url | replace: ':num', page }}">{{ page }}</a>
{% endif %}
</li>
{% endfor %}
{%- if paginator.next_page %}
<li><a href="{{ paginator.next_page_path | relative_url }}"
class="next-page">»</a></li>
{%- else %}
<li>
<div class="pager-edge">»</div>
</li>
{%- endif %}
</ul>
</div>
{%- endif -%}
{%- endif -%}
</div>