aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/index/announcements.html
diff options
context:
space:
mode:
authorMantas <11616378+mistermantas@users.noreply.github.com>2019-01-25 16:53:51 +0200
committerMantas <11616378+mistermantas@users.noreply.github.com>2019-01-25 16:53:51 +0200
commit290aa0df0204038b8c7b23c28d716755e468f169 (patch)
treef550e674805b3cc42b4b0c74ea7d78a8c59aca77 /layouts/partials/index/announcements.html
parent6a1fbad426c29b4f3fe4f6fa4d240735d5432b50 (diff)
fix #42, #51; v4-dev1 begins
Diffstat (limited to 'layouts/partials/index/announcements.html')
-rw-r--r--layouts/partials/index/announcements.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/index/announcements.html b/layouts/partials/index/announcements.html
new file mode 100644
index 0000000..a02045e
--- /dev/null
+++ b/layouts/partials/index/announcements.html
@@ -0,0 +1,14 @@
+{{ $incidents := where .Site.RegularPages "Params.section" "issue" }}
+{{ $active := where $incidents "Params.resolved" "=" false }}
+
+{{ if $active }}
+ <div class="announcement-box">
+ {{ range $active }}
+ <div class="padding">
+ <p><strong class="bold">{{ .Title }}</strong></p>
+ {{ .Content | safeHTML | truncate 500 "…" }}
+ <p><a href="{{ .Permalink }}">{{ T "continueReading" }}</a></p>
+ </div>
+ {{ else }}{{ end }}
+ </div>
+{{ end }} \ No newline at end of file