如何解决Jekyll/Liquid 模板捕获帖子的类别名称
我正在按日期和 using this solution 创建存档。
我想在帖子旁边添加帖子的类别,但自 categories are indexed through the site
起无法捕获帖子的类别名称 {% else %}
<li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
{% capture category_names %}{{ ## need to capture category }}{% endcapture %}
{% if category_name %} - {% for category in category_names %}
<a href="{{site.baseurl}}/categories/#{{category|slugize}}">{{category}}</a>
{% unless forloop.last %} {% endunless %}
{% endfor %}
{% endif %}
{% if post.date %} - {{ post.date | date: "%m/%d/%Y" }}{% endif %}</li>
{% endif %}
目前,上面的代码创建了 {post name} - - mm/dd/YYYY,因为我想要在 2 '-' 之间没有类别名称。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。