From 05a3bae920c06f01b27e3236ecceb9b1cfbbd471 Mon Sep 17 00:00:00 2001 From: rjzupkoii Date: Sun, 10 Mar 2024 14:40:42 -0400 Subject: [PATCH] Closes #1936 with setting to hide RSS feed --- _config.yml | 1 + _includes/footer.html | 2 ++ 2 files changed, 3 insertions(+) diff --git a/_config.yml b/_config.yml index 0518211eecfd2..ca1539d226622 100644 --- a/_config.yml +++ b/_config.yml @@ -48,6 +48,7 @@ staticman: options: format : "iso8601" # "iso8601" (default), "timestamp-seconds", "timestamp-milliseconds" atom_feed: + hide : false # change to true to hide the RSS feed in the footer path : # blank (default) uses feed.xml diff --git a/_includes/footer.html b/_includes/footer.html index 224d9b8908d8d..bcdeb93d6f6ec 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -17,7 +17,9 @@ {% if site.author.bitbucket %}
  • Bitbucket
  • {% endif %} + {% if site.atom_feed.hide != true %}
  • {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}
  • + {% endif %}