aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/index/tabs.html
diff options
context:
space:
mode:
authorPascal Breuer <pbreuer@breuco.de>2020-05-11 17:51:10 +0200
committerPascal Breuer <pbreuer@breuco.de>2020-05-11 17:51:10 +0200
commitc516295bb8f6d72312eae4a67d14e904ec1fa4f2 (patch)
tree8641be4350e176cececd79bb96d94c50fc490b6a /layouts/partials/index/tabs.html
parentab704222e301254fa7a6a8a062d98b923975f9dc (diff)
Add config option to disable incident history
Diffstat (limited to 'layouts/partials/index/tabs.html')
-rw-r--r--layouts/partials/index/tabs.html10
1 files changed, 6 insertions, 4 deletions
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 @@
</div>
</div>
{{ else }}
- <div class="contain contain--more">
- <h2 class="center">{{ T "incidentHistory" }}</h2>
- <hr class="clean">
- </div>
+ {{ if .Site.Params.enableHistory }}
+ <div class="contain contain--more">
+ <h2 class="center">{{ T "incidentHistory" }}</h2>
+ <hr class="clean">
+ </div>
+ {{ end }}
{{ end }} \ No newline at end of file