little fixes
This commit is contained in:
parent
73dd6adab0
commit
1cb3079324
4 changed files with 15 additions and 14 deletions
13
categories.html
Normal file
13
categories.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue