diff options
Diffstat (limited to 'layouts/issues/small.html')
-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> |