diff options
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/footer.html | 34 | ||||
-rw-r--r-- | layouts/partials/index/tabs.html | 10 |
2 files changed, 24 insertions, 20 deletions
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 @@ <!-- 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 .Site.Params.enableHistory }} + <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..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 |