aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 2faafaaf8142900c2a1534bf8fef6110b56ecaf8 (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
{{ 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-homepage status-{{ if $isDown }}down{{ else }}{{ if $isDisrupted}}disrupted{{ else }}{{ if $isNotice }}notice{{ else }}ok{{ end }}{{ end }}{{ end }} {{ if not .Site.Params.alwaysKeepBrandColor }}change-header-color{{ end }}">
    {{ partial "header" . }}

    <!-- Main -->
    <div class="contain">
      <!-- Enable JavaScript banner -->
      {{ partial "index/noscript" . }}

      <!-- "All systems operational" (or not) banner -->
      {{ partial "index/summary" . }}

      <!-- Announcement box (title and short summary) -->
      {{ partial "index/announcements" . }}

      <!-- Auto refresh -->
      {{ partial "index/autorefresh" . }}

      <!-- Individual component info -->
      {{ partial "index/components" . }}

      {{ if .Site.Params.enableCustomHTML }}
        {{ partial "custom/homepage-summary" . }}
      {{ end }}
      <!-- End main -->
    </div>

  <!-- Custom tabs -->
  {{ partial "index/tabs" . }}

  <!-- All incidents + pagination -->
  {{ if not .Site.Params.disableIncidentHistory }}
    <div class="contain contain--more" id="incidents">
      {{ if eq .Site.Params.incidentHistoryFormat "yearly" }}
        {{ partial "index/incidents-yearly" . }}
      {{ else if eq .Site.Params.incidentHistoryFormat "monthly" }}
        {{ partial "index/incidents-monthly" . }}
      {{ else }}
        {{ partial "index/incidents" . }}
      {{ end }}
      <div class="padding"></div>
    </div>
  {{ end }}

  {{ partial "js" . }}
  {{ partial "footer" . }}
  </body>
</html>