Skip to content

Latest commit

 

History

History
executable file
·
24 lines (19 loc) · 718 Bytes

File metadata and controls

executable file
·
24 lines (19 loc) · 718 Bytes
layout title permalink
single
On the blog
/categories/
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}
 <h3 class="{{ category_name }}" id="#{{ category_name | slugize }}">
 <a name="{{ category_name | slugize }}" href = "/categories/#{{ category_name | slugize }}">🔗 {{ category_name }}</a></h3>

{% for post in site.categories[category_name] %}
<article class="archive-item" >
  <li>[{{post.post_date}}] - <a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a><span class = "page__meta"></span></li>
</article>
{% endfor %}
{% endfor %}