Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 642 Bytes

category.md

File metadata and controls

22 lines (21 loc) · 642 Bytes
layout title permalink
page
领域
/categories/
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

  <h3 class="category-head">{{ category_name }}</h3>
  <a name="{{ category_name | slugize }}"></a>
  {% for post in site.categories[category_name] %}
  <article class="archive-item">
    <h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4>
  </article>
  {% endfor %}
</div>

{% endfor %}