Skip to content

Files

Latest commit

 

History

History
executable file
·
30 lines (28 loc) · 851 Bytes

category.md

File metadata and controls

executable file
·
30 lines (28 loc) · 851 Bytes
layout title permalink ref order
page
카테고리
/category.html
category
2
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

<h2 class="category-head">{{ category_name }}</h2>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article class="archive-item">
  {% if post.title.size >= 80 %}
    <li><a href="{{ site.baseurl }}{{ post.url }}">{{post.title | slice: 0, 80}}...</a></li>
  {% endif %}
  {% if post.title.size < 80 %}
    <li><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></li>
  {% endif %}
</article>
{% endfor %}
{% endfor %}