如何摆脱 Hugo 模板中的 RSS link?

How to get rid of RSS link in Hugo template?

我想摆脱默认 feed link that appears in my website's main menu. I was able to delete the default Archives link by deleting the corresponding code under [[menu.main]] in config.toml, but no similar code block exists for . I also tried going into index.html and deleting lines that appeared to correspond to to no avail. I'm using blogdown and the Hugo template Noteworthy 来构建我的网站。

要从 Noteworthy 主题的菜单中删除 RSS link,请从文件 /layouts/partials/nav.html 中删除第 8 行。该行应如下所示:

  <a class="color-link nav-link" href="{{ .Site.RSSLink }}" target="_blank" rel="noopener" type="application/rss+xml">RSS</a>

如您所见,RSS link 已硬编码到模板中,因此无法通过编辑 config.toml 中的菜单将其删除。

编辑:文件的完整位置可能是 themes/noteworthy/layouts/partials/nav.html.