From c516295bb8f6d72312eae4a67d14e904ec1fa4f2 Mon Sep 17 00:00:00 2001 From: Pascal Breuer Date: Mon, 11 May 2020 17:51:10 +0200 Subject: Add config option to disable incident history --- layouts/partials/footer.html | 34 ++++++++++++++++++---------------- layouts/partials/index/tabs.html | 10 ++++++---- 2 files changed, 24 insertions(+), 20 deletions(-) (limited to 'layouts/partials') diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 5faf5c6..1be7f97 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -13,22 +13,24 @@ {{ T "poweredBy" }} cState -
- -

- - ⚡ - {{ T "rss" }} — - {{ with $.Site.Home.OutputFormats.Get "rss" }} - {{ T "toAllUpdates" }} - {{ end }} - {{ if not .IsHome }} - {{ with .OutputFormats.Get "rss" }} - {{ T "or" }} {{ T "onlyThisFeed" }} ({{ $.Title }}) - {{ end }} - {{ end }} - -

+ {{ if .Site.Params.enableHistory }} +
+ +

+ + ⚡ + {{ T "rss" }} — + {{ with $.Site.Home.OutputFormats.Get "rss" }} + {{ T "toAllUpdates" }} + {{ end }} + {{ if not .IsHome }} + {{ with .OutputFormats.Get "rss" }} + {{ T "or" }} {{ T "onlyThisFeed" }} ({{ $.Title }}) + {{ end }} + {{ end }} + +

+ {{ end }} diff --git a/layouts/partials/index/tabs.html b/layouts/partials/index/tabs.html index e1fc986..015eb36 100644 --- a/layouts/partials/index/tabs.html +++ b/layouts/partials/index/tabs.html @@ -13,8 +13,10 @@ {{ else }} -
-

{{ T "incidentHistory" }}

-
-
+ {{ if .Site.Params.enableHistory }} +
+

{{ T "incidentHistory" }}

+
+
+ {{ end }} {{ end }} \ No newline at end of file -- cgit v1.2.3-70-g09d2 From 75b462973ee153b3a461700b12870c7add9f78bd Mon Sep 17 00:00:00 2001 From: Mantas Vilčinskas <11616378+mistermantas@users.noreply.github.com> Date: Tue, 19 May 2020 11:55:35 +0300 Subject: Update footer.html --- layouts/partials/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/partials') diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 1be7f97..fb1bb50 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -13,7 +13,7 @@ {{ T "poweredBy" }} cState - {{ if .Site.Params.enableHistory }} + {{ if not .Site.Params.disableIncidentHistory }}

-- cgit v1.2.3-70-g09d2 From 56d9f7ada5016f62f35a1a20609f0881f4f11ed6 Mon Sep 17 00:00:00 2001 From: Mantas Vilčinskas <11616378+mistermantas@users.noreply.github.com> Date: Tue, 19 May 2020 11:55:48 +0300 Subject: Update tabs.html --- layouts/partials/index/tabs.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layouts/partials') diff --git a/layouts/partials/index/tabs.html b/layouts/partials/index/tabs.html index 015eb36..9544890 100644 --- a/layouts/partials/index/tabs.html +++ b/layouts/partials/index/tabs.html @@ -13,10 +13,10 @@ {{ else }} - {{ if .Site.Params.enableHistory }} + {{ if not .Site.Params.disableIncidentHistory }}

{{ T "incidentHistory" }}


{{ end }} -{{ end }} \ No newline at end of file +{{ end }} -- cgit v1.2.3-70-g09d2