Remove old version.
[wolnelektury.git] / src / catalogue / templates / catalogue / tag_catalogue.html
diff --git a/src/catalogue/templates/catalogue/tag_catalogue.html b/src/catalogue/templates/catalogue/tag_catalogue.html
deleted file mode 100644 (file)
index 4c6a99f..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-{% extends "base/base.html" %}
-{% load i18n %}
-{% load cache %}
-{% load plain_list from catalogue_tags %}
-
-{% block titleextra %}{{ title }}{% endblock %}
-
-{% block bodyid %}tag-catalogue{% endblock %}
-
-{% block body %}
-  <h1>{{ title|title }} {% trans "on Wolne Lektury" %}</h1>
-
-  {% for tag in best %}
-    <a class="tag-box" href="{{ tag.get_absolute_url }}">
-      {% cache 86400 catalogue_tag_box tag.pk %}
-        {% include 'catalogue/tag_box.html' %}
-      {% endcache %}
-    </a>
-  {% endfor %}
-
-  <h2>{{ whole_category }}</h2>
-
-  {% plain_list tags %}
-{% endblock %}