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 ba25bcb..0000000
+++ /dev/null
@@ -1,38 +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>
-
-  {% for collection in objects %}
-    <section class="l-section">
-      <div class="l-collections js-collections">
-        <div class="l-collections__header">
-          <h3><a href="{{ collection.get_absolute_url }}">{{ collection.title }}</a></h3>
-        </div>
-          <div class="l-author__info">
-            <p>
-              {{ collection.description|safe }}
-            </p>
-          </div>
-        <div class="l-books">
-          {% for book in collection.get_books %}
-            {% include 'catalogue/2022/book_box.html' %}
-          {% endfor %}
-        </div>
-      </div>
-    </section>
-  {% endfor %}
-
-
-{% endblock %}