Layout fixes, cover update for files.
[wolnelektury.git] / src / catalogue / templates / catalogue / recent_list.html
1 {% extends "2022/base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags %}
4
5 {% block settings %}
6   {% load title %}
7   {% trans "Recent publications" as title %}
8   {% title title %}
9 {% endblock %}
10
11 {% block main %}
12   <div class="l-article__title">
13     <h1>{% trans "Recent publications" %}</h1>
14   </div>
15
16   {% url 'recent_audiobooks_list' as a %}
17   {% url 'recent_daisy_list' as d %}
18   <div class="l-main">
19   <p>
20     {% blocktrans %}You can also see <a href="{{a}}">recent audiobooks</a>
21       and <a href="{{d}}">recent DAISY files</a>.{% endblocktrans %}
22   </p>
23   </div>
24
25   <div class="l-section l-section--col">
26     <div class="l-books__grid" id="book-list">
27       {% for book in object_list %}
28         {% include "catalogue/2022/book_box.html" %}
29       {% endfor %}
30     </div>
31   </div>
32 {% endblock %}