aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials
diff options
context:
space:
mode:
authorMantas Vilčinskas <11616378+mistermantas@users.noreply.github.com>2020-05-19 13:09:41 +0300
committerGitHub <noreply@github.com>2020-05-19 13:09:41 +0300
commitfc16aa965d2c979e78f1d58d064c0330fa3e3cb9 (patch)
tree6a03bd7fdb9ebd49effd5bd62688cfd6765121d6 /layouts/partials
parent409e777860f309c3bcff850b52654ac9e00692b9 (diff)
parent50d99f38b5fffdf22c5c229a9b2540928244282f (diff)
Add config option to disable incident history #108
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/footer.html34
-rw-r--r--layouts/partials/index/tabs.html12
2 files changed, 25 insertions, 21 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 5faf5c6..fb1bb50 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -13,22 +13,24 @@
<!-- Please keep this one around to help cState grow <3 -->
<small class="footer__copyright faded">{{ T "poweredBy" }} <a href="https://github.com/cstate/cstate"><b>cState</b></a></small>
- <hr>
-
- <p class="hinted">
- <small>
- ⚡
- {{ T "rss" }} —
- {{ with $.Site.Home.OutputFormats.Get "rss" }}
- <a href="{{ .Permalink }}" class="no-underline">{{ T "toAllUpdates" }}</a>
- {{ end }}
- {{ if not .IsHome }}
- {{ with .OutputFormats.Get "rss" }}
- {{ T "or" }} <a href="{{ .Permalink }}" class="no-underline">{{ T "onlyThisFeed" }} ({{ $.Title }})</a>
- {{ end }}
- {{ end }}
- </small>
- </p>
+ {{ if not .Site.Params.disableIncidentHistory }}
+ <hr>
+
+ <p class="hinted">
+ <small>
+ ⚡
+ {{ T "rss" }} —
+ {{ with $.Site.Home.OutputFormats.Get "rss" }}
+ <a href="{{ .Permalink }}" class="no-underline">{{ T "toAllUpdates" }}</a>
+ {{ end }}
+ {{ if not .IsHome }}
+ {{ with .OutputFormats.Get "rss" }}
+ {{ T "or" }} <a href="{{ .Permalink }}" class="no-underline">{{ T "onlyThisFeed" }} ({{ $.Title }})</a>
+ {{ end }}
+ {{ end }}
+ </small>
+ </p>
+ {{ end }}
</div>
</div>
diff --git a/layouts/partials/index/tabs.html b/layouts/partials/index/tabs.html
index e1fc986..9544890 100644
--- a/layouts/partials/index/tabs.html
+++ b/layouts/partials/index/tabs.html
@@ -13,8 +13,10 @@
</div>
</div>
{{ else }}
- <div class="contain contain--more">
- <h2 class="center">{{ T "incidentHistory" }}</h2>
- <hr class="clean">
- </div>
-{{ end }} \ No newline at end of file
+ {{ if not .Site.Params.disableIncidentHistory }}
+ <div class="contain contain--more">
+ <h2 class="center">{{ T "incidentHistory" }}</h2>
+ <hr class="clean">
+ </div>
+ {{ end }}
+{{ end }}