Cleanup
[wolnelektury.git] / src / catalogue / templates / catalogue / 2022 / collections.html
diff --git a/src/catalogue/templates/catalogue/2022/collections.html b/src/catalogue/templates/catalogue/2022/collections.html
deleted file mode 100644 (file)
index bdf36d5..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-{% extends '2022/base.html' %}
-
-
-{% block breadcrumbs %}
-  <a href="/katalog/"><span>Katalog</span></a>
-{% endblock %}
-
-
-{% block main %}
-
-  <div class="l-section">
-    <div class="l-author__header">
-      <h1>Kolekcje</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="collections">
-    </div>
-  </div>
-
-  <div id="collections">
-  {% for collection in objects %}
-    <section class="l-section">
-      <div class="l-collections -js-collections">
-        <div class="l-collections__header">
-          <h3><a class="s" href="{{ collection.get_absolute_url }}">{{ collection.title }}</a></h3>
-        </div>
-        <div class="l-books">
-          {% for book in collection.get_5_books %}
-            {% include 'catalogue/2022/book_box.html' %}
-          {% endfor %}
-        </div>
-      </div>
-    </section>
-  {% endfor %}
-  </div>
-
-
-{% endblock %}