在 blogdown 中使用 hugo-xmin 主题渲染站点时出现问题
Problem in rendering site using hugo-xmin theme in blogdown
我正在尝试将我网站的主题更改为 hugo-xmin
,但我无法使网站正确呈现。我得到了我想要的主页(如下),但是我没有得到 Contact
页面(我也没有在 public
目录中看到它)。
此外,我没有看到我的帖子格式正确,我看到的是目录类型的列表,但我在 categories
或 tags
中也没有看到任何内容。
帖子页面粘贴在下方
我收到 Contact
的 404
消息,如下所示(可能是因为 public
文件夹中没有 contact.html
)。
我试图理解 blogdown
书中主题的文档,但我无法取得太大进展。如有任何帮助,我们将不胜感激!
站点的源代码可以在 - https://github.com/sn248/sn248.github.io
找到
我正在使用 blogdown
版本 0.20
和 hugo
版本 - 0.75.1
、R
版本 - 4.0.2
和 rmarkdown
版本 - 2.3
.
谢谢!
萨蒂亚
I just created a PR on Github to fix your issue. As I mentioned there, index.md
has a special meaning in Hugo (index file for leaf bundles), and you should use _index.md
here (i.e., content/_index.md
instead of content/index.md
). See https://gohugo.io/content-management/page-bundles/ 有关 Hugo 中的捆绑包的更多信息。
我正在尝试将我网站的主题更改为 hugo-xmin
,但我无法使网站正确呈现。我得到了我想要的主页(如下),但是我没有得到 Contact
页面(我也没有在 public
目录中看到它)。
此外,我没有看到我的帖子格式正确,我看到的是目录类型的列表,但我在 categories
或 tags
中也没有看到任何内容。
帖子页面粘贴在下方
我收到 Contact
的 404
消息,如下所示(可能是因为 public
文件夹中没有 contact.html
)。
我试图理解 blogdown
书中主题的文档,但我无法取得太大进展。如有任何帮助,我们将不胜感激!
站点的源代码可以在 - https://github.com/sn248/sn248.github.io
找到我正在使用 blogdown
版本 0.20
和 hugo
版本 - 0.75.1
、R
版本 - 4.0.2
和 rmarkdown
版本 - 2.3
.
谢谢!
萨蒂亚
I just created a PR on Github to fix your issue. As I mentioned there, index.md
has a special meaning in Hugo (index file for leaf bundles), and you should use _index.md
here (i.e., content/_index.md
instead of content/index.md
). See https://gohugo.io/content-management/page-bundles/ 有关 Hugo 中的捆绑包的更多信息。