我正在尝试创建一个显示所有类别的导航栏,然后通过单击每个类别,它然后链接到该类别中的所有帖子.
我尝试下面,它显示所有类别,但不显示链接.
{% for category in site.categories %}
<div class= "categories-title"><a name="{{ category | first }}">{{ category | first }}</a></div>
{% endfor %}
Run Code Online (Sandbox Code Playgroud)
我也尝试了如下jekyll-category-archive-plugin,但它给出了Error:Unknown标签'category'.
{% for category in site categories %}
{% category link category %}This is a link to {{category}} {% endcategorylink %}
{% endfor %}
Run Code Online (Sandbox Code Playgroud)
任何人都可以给我一些提示如何做到这一点?
非常感谢.景
jekyll ×1