将分类法​​模板添加到Blogdown默认主题

时间:2017-09-18 17:41:02

标签: r hugo blogdown

我试图将标签和类别添加到默认的博客主题(hugo-lithium主题)。

作为第一步,config.toml配置为在主题的主菜单中包含类别和标签链接:

[[menu.main]]
    name = "Categories"
    url = "/categories/"
    weight = 2
[[menu.main]]
    name = "Tags"
    url = "/tags/"
    weight = 3

单击“类别”链接显示:

Index of ./categories/ 
Name    Size    Date Modified 
./              2017-09-15 09:55:53 
../             2017-09-16 22:03:12 
r/              2017-09-15 09:55:53 
index.xml  695 B    2017-09-17 14:25:01 

点击标签链接显示:

Index of ./tags/
Name    Size    Date Modified
./              2017-09-15 15:31:46
../             2017-09-16 22:03:12
aws/            2017-09-15 15:31:46
openemr/        2017-09-15 15:31:46
plot/           2017-09-15 09:55:53
r-markdown/     2017-09-15 09:55:53
regression/     2017-09-15 09:55:53
index.xml  1,199 B  2017-09-17 14:36:01

通过类别和标签来操纵沼泽,寻求更好的用户体验。我知道它存在,因为我已经在其他主题中看到了它。

我理解问题是分类法(terms.html)的模板不在主题中,因此不会生成索引页面(例如,tags / index.html)。

如何将分类法(terms.html)的模板添加到主题中,以便合理的用户按类别和标记对博客帖子列表进行分类?

1 个答案:

答案 0 :(得分:2)

为了记录,这个问题已经交叉发布on Github

hugo-lithium-theme没有分类法模板(terms.html),因此不会生成索引页面(例如tags/index.html)。如果您想添加它,我建议您花一些时间在博客一书中了解有关Hugo主题和模板的更多信息:https://bookdown.org/yihui/blogdown/templates.html,并将模板terms.html添加到_default/文件夹。