diff options
author | Mantas Vilčinskas <11616378+mistermantas@users.noreply.github.com> | 2020-04-12 10:42:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 10:42:42 +0300 |
commit | aab0da3bdf35ea2d502f25f9842c51f13a6ad8a9 (patch) | |
tree | 25fa25cb316826b3a43dc41d209aef761284a120 /layouts | |
parent | 60681b94cd90d7c334733ed2840b60f198e6842d (diff) |
#102
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/issues/small.html | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/layouts/issues/small.html b/layouts/issues/small.html index 0e1d5ed..6ed2cce 100644 --- a/layouts/issues/small.html +++ b/layouts/issues/small.html @@ -80,15 +80,23 @@ </h3> <!-- Marker --> - <strong class="error"> - {{ if eq .Params.severity "down" }} - ■ - {{ else if eq .Params.severity "disrupted" }} - ▲ - {{ else }} - ◆ - {{ end }} - {{ T "downtimeOngoing" }}</strong> + {{ if eq .Params.severity "notice" }} + <strong class="warning"> + ◆ + {{ T "downtimeOngoing" }} + </strong> + {{ else }} + <strong class="error"> + {{ if eq .Params.severity "down" }} + ■ + {{ else if eq .Params.severity "disrupted" }} + ▲ + {{ else }} + ◆ + {{ end }} + {{ T "downtimeOngoing" }} + </strong> + {{ end }} {{ end }} </a> |