xbmlz/hexo-theme-maple

RSS file path

Closed this issue · 1 comments

按照源代码,hexo generate 后在子目录中点击 rss 按键指向的资源是并非 /myblog/rss2.xml,而是 /myblog/mypost/rss.xml,会导致加载资源错误。
可以把 /hexo-theme-maple/layout/_partial/header.ejs 中 25 - 27 行:

        <a class="w-5 h-5 hidden sm:flex" title="<%- key %>" href="rss2.xml">
          <iconify-icon width="20" icon="ri:rss-line"></iconify-icon>
        </a>

修改为:

        <a class="w-5 h-5 hidden sm:flex" title="<%- key %>" href="<%- url_for('rss2.xml') %>">
          <iconify-icon width="20" icon="ri:rss-line"></iconify-icon>
        </a>

如何生成rss2.xml文件?点击显示文件不存在。没有页面