From 4a968698e45ece04b25f41783298b9b397a191a1 Mon Sep 17 00:00:00 2001 From: Mantas <11616378+mistermantas@users.noreply.github.com> Date: Thu, 24 Jan 2019 19:23:35 +0200 Subject: cState is now stable on v3.0 - 2019-01-24 (info: #41) --- layouts/404.html | 21 ++++ layouts/_default/list.html | 88 ++++++++++++++++ layouts/_default/list.xml | 30 ++++++ layouts/_default/single.html | 8 +- layouts/index.html | 61 +++++------ layouts/index.xml | 30 ++++++ layouts/issues/issue.html | 96 ++++++++++++------ layouts/issues/single.html | 6 +- layouts/issues/small.html | 76 ++++++++++++++ layouts/partials/footer.html | 22 +++- layouts/partials/header.html | 4 +- layouts/partials/js.html | 33 ++++-- layouts/partials/meta.html | 229 +++++++++++++++++++++++++----------------- layouts/shortcodes/track.html | 6 +- 14 files changed, 532 insertions(+), 178 deletions(-) create mode 100644 layouts/404.html create mode 100644 layouts/_default/list.html create mode 100644 layouts/_default/list.xml create mode 100644 layouts/index.xml create mode 100644 layouts/issues/small.html (limited to 'layouts') diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..64ff118 --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,21 @@ +{{ 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" }} + +
+ {{ partial "header" . }} + +{{ T "notFoundText" }}
+