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