diff options
author | Mantas <11616378+mistermantas@users.noreply.github.com> | 2019-01-25 16:53:51 +0200 |
---|---|---|
committer | Mantas <11616378+mistermantas@users.noreply.github.com> | 2019-01-25 16:53:51 +0200 |
commit | 290aa0df0204038b8c7b23c28d716755e468f169 (patch) | |
tree | f550e674805b3cc42b4b0c74ea7d78a8c59aca77 /layouts/partials/index/summary.html | |
parent | 6a1fbad426c29b4f3fe4f6fa4d240735d5432b50 (diff) |
fix #42, #51; v4-dev1 begins
Diffstat (limited to 'layouts/partials/index/summary.html')
-rw-r--r-- | layouts/partials/index/summary.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layouts/partials/index/summary.html b/layouts/partials/index/summary.html new file mode 100644 index 0000000..d8e3108 --- /dev/null +++ b/layouts/partials/index/summary.html @@ -0,0 +1,24 @@ +{{ $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" }} + +<div class="summary"> + <strong> + {{ if $isDown }} + {{ T "isDown" }} + {{ else }} + {{ if $isDisrupted }} + {{ T "isDisrupted" }} + {{ else }} + {{ if $isNotice }} + {{ T "isNotice" }} + {{ else }} + {{ T "isOk" }} + {{ end }}{{ end }}{{ end }} + </strong> + + <span class="summary__date float-right" onclick="location.reload()"></span> +</div>
\ No newline at end of file |