File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
< ul class ="pagination " style ="margin: 5px 0 10px 0 ">
2
2
{% if previous_url %}
3
- < li >
4
- < a href ="{{ previous_url }} " aria-label ="Previous ">
3
+ < li class =" page-item " >
4
+ < a class =" page-link " href ="{{ previous_url }} " aria-label ="Previous ">
5
5
< span aria-hidden ="true "> «</ span >
6
6
</ a >
7
7
</ li >
8
8
{% else %}
9
- < li class ="disabled ">
10
- < a href ="# " aria-label ="Previous ">
9
+ < li class ="page-item disabled ">
10
+ < a class =" page-link " href ="# " aria-label ="Previous ">
11
11
< span aria-hidden ="true "> «</ span >
12
12
</ a >
13
13
</ li >
14
14
{% endif %}
15
15
16
16
{% for page_link in page_links %}
17
17
{% if page_link.is_break %}
18
- < li class ="disabled ">
18
+ < li class ="page-item disabled ">
19
19
< a href ="# "> < span aria-hidden ="true "> …</ span > </ a >
20
20
</ li >
21
21
{% else %}
22
22
{% if page_link.is_active %}
23
- < li class ="active ">
24
- < a href ="{{ page_link.url }} "> {{ page_link.number }}</ a >
23
+ < li class ="page-item active ">
24
+ < a class =" page-link " href ="{{ page_link.url }} "> {{ page_link.number }}</ a >
25
25
</ li >
26
26
{% else %}
27
- < li >
28
- < a href ="{{ page_link.url }} "> {{ page_link.number }}</ a >
27
+ < li class =" page-item " >
28
+ < a class =" page-link " href ="{{ page_link.url }} "> {{ page_link.number }}</ a >
29
29
</ li >
30
30
{% endif %}
31
31
{% endif %}
32
32
{% endfor %}
33
33
34
34
{% if next_url %}
35
- < li >
36
- < a href ="{{ next_url }} " aria-label ="Next ">
35
+ < li class =" page-item " >
36
+ < a class =" page-link " href ="{{ next_url }} " aria-label ="Next ">
37
37
< span aria-hidden ="true "> »</ span >
38
38
</ a >
39
39
</ li >
40
40
{% else %}
41
- < li class ="disabled ">
42
- < a href ="# " aria-label ="Next ">
41
+ < li class ="page-item disabled ">
42
+ < a class =" page-link " href ="# " aria-label ="Next ">
43
43
< span aria-hidden ="true "> »</ span >
44
44
</ a >
45
45
</ li >
You can’t perform that action at this time.
0 commit comments