about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNgô Ngọc Đức Huy <huyngo@disroot.org>2021-02-08 21:47:08 +0700
committerNgô Ngọc Đức Huy <huyngo@disroot.org>2021-02-08 21:47:08 +0700
commit995080f347483c6de4c7f8fc85033b5165d75ed1 (patch)
tree83851f04a1d79a883f70667f6f9ac32476fb5534
parentff17b30f9c469731ff825a0d8d6b944a945a2d62 (diff)
downloadblog-995080f347483c6de4c7f8fc85033b5165d75ed1.tar.gz
Remove category page
-rw-r--r--categories.html24
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>