diff options
author | Mantas Vilčinskas <hi@mnts.lt> | 2022-07-13 18:38:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 18:38:58 +0300 |
commit | bdd27c6ee3ec7f127cf9bc1e567c7a7a23b16a09 (patch) | |
tree | aa8e2e0ca58bd1611fa22732aee6d434825d8679 /layouts/partials | |
parent | 5a80920562981838d51230961fc02644b86d1149 (diff) |
Fix #224, some weirdly formatted posts look pinned
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/index/announcements.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/layouts/partials/index/announcements.html b/layouts/partials/index/announcements.html index e33c262..f8f7471 100644 --- a/layouts/partials/index/announcements.html +++ b/layouts/partials/index/announcements.html @@ -1,11 +1,13 @@ -{{ $incidents := where .Site.RegularPages "Params.section" "issue" }} -{{ $active := where $incidents "Params.resolved" "=" false }} -{{ $activeIncidents := where $incidents "Params.informational" "=" false }} -{{ $pinned := where $incidents "Params.pin" "=" true }} +{{ $allPosts := where .Site.RegularPages "Params.section" "issue" }} +{{ $active := where $allPosts "Params.resolved" "=" false }} -{{ if or ($activeIncidents) ($pinned) }} +{{ $informationals := where $allPosts "Params.informational" "=" true }} +{{ $pinned := where $informationals "Params.pin" "=" true }} + + +{{ if or ($active) ($pinned) }} <div class="announcement-box" style="border-bottom: 0"> - {{ range $activeIncidents }} + {{ range $active }} <div class="padding"> <p> <a href="{{ .RelPermalink }}"><strong class="bold">{{ .Title }} →</strong></a> @@ -19,7 +21,7 @@ {{ end }} </small></p> - {{ .Content | safeHTML | truncate 500 "…" }} <a href="{{ .RelPermalink }}"><b>→</b></a> + {{ .Content | safeHTML | truncate 500 "…" }} <p></p> </div> <hr class="clean announcement-box"> |