diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-02-08 21:47:08 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-02-08 21:47:08 +0700 |
commit | 995080f347483c6de4c7f8fc85033b5165d75ed1 (patch) | |
tree | 83851f04a1d79a883f70667f6f9ac32476fb5534 | |
parent | ff17b30f9c469731ff825a0d8d6b944a945a2d62 (diff) | |
download | blog-995080f347483c6de4c7f8fc85033b5165d75ed1.tar.gz |
Remove category page
-rw-r--r-- | categories.html | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/categories.html b/categories.html deleted file mode 100644 index 4d68836..0000000 --- a/categories.html +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: page -permalink: /categories/ -title: Categories ---- - - -<div id="archives"> -{% for category in site.categories %} - <div class="archive-group"> - {% capture category_name %}{{ category | first }}{% endcapture %} - <div id="#{{ category_name | slugize }}"></div> - <p></p> - - <h3 class="category-head">{{ category_name |capitalize }}</h3> - <a name="{{ category_name | slugize }}"></a> - {% for post in site.categories[category_name] %} - <article class="archive-item"> - <h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4> - </article> - {% endfor %} - </div> -{% endfor %} -</div> |