~cytrogen/srht-deploy

ref: 098f0ded66b5f614ec99f0d3efb89b3a5b1bc0f6 srht-deploy/meta-custom/base-templates/pagination.html -rw-r--r-- 606 bytes
098f0ded — Cytrogen 初始提交:sourcehut Docker Compose 自托管部署 10 days ago
                                                                                
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
{% if total_pages > 1 %}
<div class="row">
  <div class="col-4">
  {% if page != 1 %}
    <a
      class="btn btn-default"
      href="?page={{ page - 1 }}{{ coalesce_search_terms() }}"
    >
      {{icon('caret-left')}}
      prev
    </a>
  {% endif %}
  </div>
  <div class="col-4 text-centered">
    {{ page }} / {{ total_pages }}
  </div>
  <div class="col-4 text-right">
  {% if page != total_pages %}
    <a
      class="btn btn-default"
      href="?page={{ page + 1 }}{{ coalesce_search_terms() }}"
    >
      next
      {{icon('caret-right')}}
    </a>
  {% endif %}
  </div>
</div>
{% endif %}