diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/category.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/category.html b/_layouts/category.html index dbb7825..b58f691 100644 --- a/_layouts/category.html +++ b/_layouts/category.html @@ -1,12 +1,12 @@ {% include common/header.html %} <div class="row"> <div class="col-md-8"> - <h1>{{ page.title }}</h1> + <h1>Category: {{ page.title }}</h1> <p>This is a complete list of posts in the "{{ page.category }}" category.</p> {% if site.categories[page.category].size > 0 %} <ul> {% for post in site.categories[page.category] %} - <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li> + <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} — {{ post.title }}</a></li> {% endfor %} </ul> {% else %} |