diff --git a/_includes/post-tags.html b/_includes/post-tags.html
deleted file mode 100644
index 2c3ddaf..0000000
--- a/_includes/post-tags.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
- Tags:
- {% if post %}
- {% assign tags = post.tags %}
- {% else %}
- {% assign tags = page.tags %}
- {% endif %}
- {% for tag in tags %}
-
{{tag}}{% unless forloop.last %},{% endunless %}
- {% endfor %}
-
diff --git a/tags.html b/tags.html
deleted file mode 100644
index 58aa11d..0000000
--- a/tags.html
+++ /dev/null
@@ -1,29 +0,0 @@
----
-layout: page
-permalink: /tags/
----
-
-
-
-
-{% for tag in site.tags %}
-
- {% capture tag_name %}{{ tag | first }}{% endcapture %}
-
{{ tag_name }}
-
- {% for post in site.tags[tag_name] %}
-
-
-
- {% endfor %}
-
-{% endfor %}
-