blob: bf312e95ad06273eccb314ed418b3441672fb1b3 (
plain)
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
55
56
57
58
59
60
61
|
{{ $incidents := where .Site.RegularPages "Params.section" "issue" }}
{{ $active := where $incidents "Params.resolved" "=" false }}
{{ $isNotice := where $active "Params.severity" "=" "notice" }}
{{ $isDisrupted := where $active "Params.severity" "=" "disrupted" }}
{{ $isDown := where $active "Params.severity" "=" "down" }}
<!-- Pagination is also included with incidents -->
{{ if not $incidents }}
<div class="padding"></div>
<h3>{{ T "calmBeforeTheStorm" }}</h3>
<p>{{ T "noIncidentsDesc" }}</p>
<div class="padding"></div>
<div class="padding"></div>
<div class="padding"></div>
{{ else }}
{{ $paginator := .Paginate $incidents .Site.Params.incidentPostsPerPage }}
{{ range $paginator.Pages }}
{{ .Render "small" }}
{{ end }}
<!-- If there are more than 2 pages, show pagination -->
{{ if gt $paginator.TotalPages 1 }}
<hr>
<div class="center">
{{ if $paginator.HasPrev }}
<a href="{{ $paginator.Prev.URL }}#incidents">
⭠
{{ T "prev" }}
</a>
{{ else }}
<span class="faded">
⭠
{{ T "prev" }}
</span>
{{ end }}
{{ $paginator.PageNumber }}
/
{{ $paginator.TotalPages }}
{{ if $paginator.HasNext }}
<a href="{{ $paginator.Next.URL }}#incidents">
{{ T "next" }}
⭢
</a>
{{ else }}
<span class="faded">
{{ T "next" }}
⭢
</span>
{{ end }}
</div>
{{ end }}
{{ end }}
|