forked from 0vulns/myblog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory.html
More file actions
54 lines (54 loc) · 2.15 KB
/
category.html
File metadata and controls
54 lines (54 loc) · 2.15 KB
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
---
layout: default
type: "hidden"
---
<section id="page-header">
<div class="row current-cat">
<div class="col-full">
<h1>Category: <span style="text-transform: capitalize;">{{ page.title }}</span></h1>
</div>
</div>
</section>
{% if page.paginator %}{% assign paginator = page.paginator %}{% endif %}
{% assign category = {{site.url | append : "/" | append: site.baseurl | append:page.title}} %}
<section id="bricks" class="with-top-sep">
<div class="row masonry">
<!-- brick-wrapper -->
<div class="bricks-wrapper">
<div class="grid-sizer"></div>
{% include posts.html %}
</div>
</div>
<div class="row">
<nav class="pagination">
{% if paginator.total_pages > 1 %}
{% if paginator.previous_page %}
<a class="page-numbers prev"
href="{{ paginator.previous_page_path | prepend: site.baseurl | prepend:category| replace: '//', '/' }}">«
Prev</a>
{% else %}
<span class="page-numbers prev inactive">« Prev</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class="page-numbers current">{{page}}</span>
{% elsif page == 1 %}
<a class="page-numbers"
href="{{ paginator.previous_page_path | prepend: site.baseurl | prepend:category | replace: '//', '/' }}">{{
page }}</a>
{% else %}
<a class="page-numbers"
href="{{ site.paginate_path | prepend: site.baseurl | prepend:category | replace: '//', '/' | replace: ':num', page }}">{{
page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a class="page-numbers next"
href="{{ paginator.next_page_path | prepend: site.baseurl | prepend:category | replace: '//', '/' }}">Next »</a>
{% else %}
<span class="page-numbers next inactive">Next »</span>
{% endif %}
{% endif %}
</nav>
</div>
</section>