列出与Jekyll中的帖子相关的类别

时间:2015-07-03 21:52:09

标签: jekyll

我使用Jekyll作为我的博客平台而且非常棒。现在我有以下代码,我试图在我的index.html页面中进行调整,以便它只显示与每个帖子相关的类别。

例如,让我说我有以下帖子:

| Post Name    | Category      | 
|--------------|---------------|
| Post1        | Travel Dining | 
| Post2        | Projects      | 

当帖子列表显示时,我希望得到类似的内容: Post1,6 / 7/15,类别:旅游餐饮

以下是我的代码:     提起:         {% for category in site.categories %} <a href="/{{ category | first | slugize }}/">{{ category | first }}</a> {% endfor %}

1 个答案:

答案 0 :(得分:0)

你的问题不明确,但也许这段代码可以胜任。

<ul>
{% for p in site.posts %}
    <li>
        <a href="{{p.url}}">{{p.title}}</a> -
        {{ p.date | date: "%a, %b %d, %y" }}
            {% unless p.categories == empty %}
                -
                {% for cat in p.categories %}
                    <h1>{{ cat }}</h1>
                {% endfor %}
            {% endunless %}
    </li>
{% endfor %}
</ul>