-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (67 loc) · 2.34 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-list">
{% for post in paginator.posts %}
<article class="post-preview">
<a href="{{ site.baseurl }}{{ post.url }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">{{ post.subtitle }}</h3>
{% endif %}
</a>
<p class="post-meta">
Posted on {{ post.date | date: "%B %-d, %Y" }} •
{% if post.author %}
by {{ post.author }} •
{% endif %}
{% if post.reading_time %}
{{ post.reading_time }} min read •
{% endif %}
<br />
{% for tag in post.tags %}
<a href="{{ site.baseurl }}/tags#{{ tag | slugify }}">
<span class="badge badge-primary">{{ tag }}</span>
</a>
{% endfor %}
</p>
<div class="post-entry">
{% if post.image %}
<img src="{{ post.image | prepend: site.baseurl }}" alt="{{ post.title }}" class="post-image">
{% endif %}
{{ post.excerpt | strip_html | truncatewords: 50 }}
{% if post.excerpt != post.content %}
<a href="{{ site.baseurl }}{{ post.url }}" class="post-read-more">[Read More]</a>
{% endif %}
</div>
</article>
{% endfor %}
</div>
<!-- Pagination links -->
{% if paginator.total_pages > 1 %}
<div class="pagination-container">
<nav aria-label="Blog post navigation">
<ul class="pagination">
{% if paginator.previous_page %}
<li><a class="pagination-link" href="{{ paginator.previous_page_path | prepend: site.baseurl }}">« Previous</a></li>
{% else %}
<li><span class="pagination-link disabled">« Previous</span></li>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<li><span class="pagination-link current">{{ page }}</span></li>
{% elsif page == 1 %}
<li><a class="pagination-link" href="{{ site.baseurl }}/">{{ page }}</a></li>
{% else %}
<li><a class="pagination-link" href="{{ site.paginate_path | prepend: site.baseurl | replace: ':num', page }}">{{ page }}</a></li>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<li><a class="pagination-link" href="{{ paginator.next_page_path | prepend: site.baseurl }}">Next »</a></li>
{% else %}
<li><span class="pagination-link disabled">Next »</span></li>
{% endif %}
</ul>
</nav>
</div>
{% endif %}