对于我的Blogdown创建的网站(使用Xmin主题),帖子目录(我可以从中查看单个帖子)显示在首页上,而不是单个帖子。
这似乎是在更新到最新版本的Hugo之后发生的。我的网站的来源是here。我对该怎么办感到困惑:您有什么建议吗?
答案 0 :(得分:2)
这是由于Hugo 0.57.0和最新版本的XMin主题中的I have fixed the issue发生了重大变化。基本上你需要更换
{{ range (where .Data.Pages "Section" "!=" "") }}
使用
{{ $pages := .Pages }}
{{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
{{ range (where $pages "Section" "!=" "") }}
在模板文件layouts/_default/list.html
中。