aboutsummaryrefslogtreecommitdiff
path: root/layouts/issues/single.html
blob: 52c4145bd41a1c387c8755ec7d74e989bb59f1c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ partial "meta" . }}

{{ $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" }}

  <body class="status-{{ if $isDown }}down{{ else }}{{ if $isDisrupted}}disrupted{{ else }}{{ if $isNotice }}notice{{ else }}ok{{ end }}{{ end }}{{ end }}">
    {{ partial "header-mini" . }}

    <div class="contain">
      {{ .Render "issue" }}
    </div>

{{ partial "footer" . }}