diff options
-rw-r--r-- | _layouts/category.html | 3 | ||||
-rw-r--r-- | categories.html | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/_layouts/category.html b/_layouts/category.html index 6a5f100..dd9fcb6 100644 --- a/_layouts/category.html +++ b/_layouts/category.html @@ -1,7 +1,8 @@ --- layout: default --- -<h1>Category: {{ page.title }}</h1> +<h1>{{ page.title }}</h1> +<hr> <p>This is a list of posts in the "{{ page.category }}" category.</p> {% if site.categories[page.category].size > 0 %} <ul> diff --git a/categories.html b/categories.html index 876992f..5e42458 100644 --- a/categories.html +++ b/categories.html @@ -8,6 +8,7 @@ navbar_priority: 2 --- {% for category in site.categories %} <h1><a class="category" href="{{ site.baseurl }}/{{ category[0] | slugify: 'pretty' }}">{{ category[0] }}</a></h1> + <hr> <ul> {% for post in category[1] %} <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} — {{ post.title }}</a></li> |