Cleanup
[wolnelektury.git] / src / catalogue / templates / catalogue / 2022 / tag_catalogue.html
diff --git a/src/catalogue/templates/catalogue/2022/tag_catalogue.html b/src/catalogue/templates/catalogue/2022/tag_catalogue.html
deleted file mode 100644 (file)
index a44e5b2..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-{% extends '2022/base.html' %}
-{% load thumbnail %}
-
-
-{% block settings %}
-{% endblock %}
-
-{% block breadcrumbs %}
-  <span>{{ whole_category }}</span>
-{% endblock %}
-
-
-{% block main %}
-  <div class="l-section">
-    <div class="l-author__header">
-      <h1>{{ whole_category }}</h1>
-    </div>
-  </div>
-
-  <div class="l-search-bar">
-    <div class="l-search-bar__input">
-      <i class="icon icon-filter"></i>
-      <input type="text" placeholder="filtry, tytuł" class="quick-filter" data-for="tag-list">
-    </div>
-  </div>
-
-
-  <div class="l-section l-taglist">
-    <ul id="tag-list">
-      {% for tag in tags %}
-        <li>
-          {% if tag.photo %}
-            {% thumbnail tag.photo '40x40' crop='top' as thumb %}
-            <img src="{{ thumb.url }}" class="c-avatar">
-            {% endthumbnail %}
-          {% endif %}
-          <a class="s" href="{{ tag.get_absolute_url }}">{{ tag }} ({{ tag.count }})</a>
-        </li>
-      {% endfor %}
-    </ul>
- </div>
-
-
-{% endblock %}