nodebb-theme-harmony 1.0.0-beta.55 → 1.0.0-beta.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -20,4 +20,28 @@
|
|
|
20
20
|
<a class="page-link rounded fw-secondary px-3" href="?{pagination.next.qs}" data-page="{pagination.next.page}"> <i class="fa fa-chevron-right"></i></a>
|
|
21
21
|
</li>
|
|
22
22
|
</ul>
|
|
23
|
+
|
|
24
|
+
{{{ if !template.topic }}}
|
|
25
|
+
<ul class="pagination pagination-sm hidden-md hidden-lg justify-content-center">
|
|
26
|
+
<li class="page-item first{{{ if !pagination.prev.active }}} disabled{{{ end }}}">
|
|
27
|
+
<a class="page-link fw-secondary" href="?{pagination.first.qs}" data-page="1"><i class="fa fa-fast-backward"></i> </a>
|
|
28
|
+
</li>
|
|
29
|
+
|
|
30
|
+
<li class="page-item previous{{{ if !pagination.prev.active }}} disabled{{{ end }}}">
|
|
31
|
+
<a class="page-link fw-secondary" href="?{pagination.prev.qs}" data-page="{pagination.prev.page}"><i class="fa fa-chevron-left"></i> </a>
|
|
32
|
+
</li>
|
|
33
|
+
|
|
34
|
+
<li component="pagination/select-page" class="page-item page select-page">
|
|
35
|
+
<a class="page-link fw-secondary" href="#">{pagination.currentPage} / {pagination.pageCount}</a>
|
|
36
|
+
</li>
|
|
37
|
+
|
|
38
|
+
<li class="page-item next{{{ if !pagination.next.active }}} disabled{{{ end }}}">
|
|
39
|
+
<a class="page-link fw-secondary" href="?{pagination.next.qs}" data-page="{pagination.next.page}"> <i class="fa fa-chevron-right"></i></a>
|
|
40
|
+
</li>
|
|
41
|
+
|
|
42
|
+
<li class="page-item last{{{ if !pagination.next.active }}} disabled{{{ end }}}">
|
|
43
|
+
<a class="page-link fw-secondary" href="?{pagination.last.qs}" data-page="{pagination.pageCount}"><i class="fa fa-fast-forward"></i> </a>
|
|
44
|
+
</li>
|
|
45
|
+
</ul>
|
|
46
|
+
{{{ end }}}
|
|
23
47
|
</div>
|