little fixes

This commit is contained in:
Lukasz Skotarek 2020-04-04 17:04:23 +02:00
parent 73dd6adab0
commit 1cb3079324
4 changed files with 15 additions and 14 deletions

13
categories.html Normal file
View file

@ -0,0 +1,13 @@
---
layout: page
title: Posts by categories
permalink: /categories/
---
{% for category in site.categories %}
<h3>{{ category[0] }}</h3>
<ul>
{% for post in category[1] %}
<li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}