File tree 1 file changed +23
-1
lines changed
1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,29 @@ eleventyComputed:
15
15
{{spends .data | jsonify | safe }}
16
16
</script >
17
17
18
- <a href =" /" >Back to home</a >
18
+ <nav aria-label =" Page navigation example" >
19
+ <ul class =" pagination" >
20
+ {% if pagination .href .previous != null %}
21
+ <li class =" page-item" >
22
+ <a class =" page-link" href =" {{pagination.href.previous}}" >
23
+ <span aria-hidden =" true" >« ; </span >
24
+ <span class =" sr-only" >Previous month</span >
25
+ </a >
26
+ </li >
27
+ {% endif %}
28
+ <li class =" page-item" >
29
+ <a class =" page-link" href =" /" >Home</a >
30
+ </li >
31
+ {% if pagination .href .next != null %}
32
+ <li class =" page-item" >
33
+ <a class =" page-link" href =" {{pagination.href.next}}" >
34
+ <span class =" sr-only" >Next month</span >
35
+ <span aria-hidden =" true" >» ; </span >
36
+ </a >
37
+ </li >
38
+ {% endif %}
39
+ </ul >
40
+ </nav >
19
41
20
42
<h1 >{{ title }} </h1 >
21
43
You can’t perform that action at this time.
0 commit comments