-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.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
---
layout: default
---
<h1 class="page-heading">blog posts</h1>
<ul class="plain">
{% for post in paginator.posts %}
<li>
<span><small>{{ post.date | date: "%b %-d, %Y" }}</small></span>
<h2>{{ post.title }}</h2>
{{ post.excerpt | remove: '<p>' | remove: '</p>' }}
{% capture content_words %}
{{ post.content | number_of_words }}
{% endcapture %}
{% capture excerpt_words %}
{{ post.excerpt | number_of_words }}
{% endcapture %}
{% if excerpt_words != content_words %}
<span>…</span>
<div><small><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">read more</a></small></div>
{% endif %}
</li>
{% endfor %}
</ul>
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">prev</a>
{% else %}
<span class="previous">prev</span>
{% endif %}
<span class="page_number "> — page {{ paginator.page }} of {{ paginator.total_pages }} — </span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">next</a>
{% else %}
<span class="next ">next</span>
{% endif %}
</div>