diff options
Diffstat (limited to 'categories.html')
-rw-r--r-- | categories.html | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/categories.html b/categories.html deleted file mode 100644 index 5e42458..0000000 --- a/categories.html +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: default -title: Categories -groups: - - navbar -navbar_link: <span class="glyphicon glyphicon-th-list"></span> Categories -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> - {% endfor %} - </ul> -{% endfor %} |