Uncrazy the caching, part 1.
[wolnelektury.git] / src / wolnelektury / templates / main_page.html
1 {% extends "base/base.html" %}
2 {% load carousel from social_tags %}
3 {% load static from staticfiles %}
4 {% load i18n catalogue_tags infopages_tags %}
5 {% load ssi_include from ssify %}
6 {% load cache %}
7 {% load funding_tags %}
8 {% get_current_language as LANGUAGE_CODE %}
9
10
11 {% block title %}{% trans "Wolne Lektury internet library" %}{% endblock %}
12 {% block ogtitle %}{% trans "Wolne Lektury internet library" %}{% endblock %}
13
14 {% block extrahead %}
15 {{ block.super }}
16 {% include "hotjar.html" %}
17 {% endblock %}
18
19 {% block body %}
20   {% spaceless %}
21     {% carousel 'main' %}
22
23     <section id="main-library">
24       <h1>{% trans "In our digital library you will find" %}</h1>
25       <div class="main-library-row">
26         <div class="covers">
27           {% for book in best %}
28             {% cache 86400 book_mini_box book.pk %}
29               {% include 'catalogue/book_mini_box.html' %}
30             {% endcache %}
31           {% endfor %}
32         </div>
33         <a href="{% url "book_list" %}">
34           <div class="note white-box normal-text" style="font-size: 18px">
35             {% trans "and many other books, poems, pictures, audiobooks…" %}
36           </div>
37         </a>
38       </div>
39     </section>
40
41     <section id="main-theme">
42       <h1>{% trans "Motifs and themes" %}</h1>
43       <div class="white-box normal-text">
44         <h2>{% trans "Theme" %}: {{ theme }}</h2>
45         <p>{% trans "Explore works with the same theme" %}</p>
46         {% for book in theme_books %}
47           {% cache 86400 book_mini_box book.pk %}
48             {% include 'catalogue/book_mini_box.html' %}
49           {% endcache %}
50         {% endfor %}
51         {% if theme_fragment %}
52           {% cache 3600 fragment_promo theme_fragment.pk %}
53             {% include 'catalogue/fragment_promo.html' with fragment=theme_fragment %}
54           {% endcache %}
55         {% endif %}
56       </div>
57       <a class="more" href="{% url 'theme_catalogue' %}">{% trans "See motifs catalog" %}</a>
58     </section>
59
60     {% if collection %}
61       <section>
62         <h1>{% trans "Collections" %}</h1>
63         {% cache 3600 collection_box collection.pk LANGUAGE_CODE %}
64           {% include 'catalogue/collection_box.html' %}
65         {% endcache %}
66         <a class="more" href="{% url 'catalogue_collections' %}">{% trans "See collections catalog" %}</a>
67       </section>
68     {% endif %}
69
70     <section>
71       <h1>{% trans "Recent publications" %}</h1>
72         {% for book in last_published %}
73           {% cache 86400 book_mini_box book.pk %}
74             {% include 'catalogue/book_mini_box.html' %}
75           {% endcache %}
76         {% endfor %}
77       <a class="more" href="{% url 'recent_list' %}">{% trans "More recent publications" %}</a>
78     </section>
79
80     <div class="clearboth"></div>
81
82     <section class="infopages-box">
83       <h1>{% trans "News" %}</h1>
84       {% ssi_include 'latest_blog_posts' %}
85     </section>
86
87     <section class="infopages-box">
88       <h1>{% trans "Utilities" %}</h1>
89
90       <ul>
91         <li><a href="{% url 'suggest' %}" id="suggest" class="ajaxable">{% trans "Report a bug or suggestion" %}</a></li>
92         <!--li><a href="http://turniej.wolnelektury.pl">Turniej Elektrybałtów</a></li-->
93         <li><a href="{% url 'reporting_catalogue_pdf' %}">{% trans "Download the catalogue in PDF format." %}</a></li>
94         <li><a href="{% url 'dictionary_notes' %}">{% trans "Footnotes" %}</a></li>
95         <li><a href="{% url 'suggest_publishing' %}" id="suggest-publishing" class="ajaxable">{% trans "Missing a book?" %}</a></li>
96         <li><a href="{% url 'publish_plan' %}">{% trans "Publishing plan" %}</a></li>
97         <li><a href="{% url 'api' %}">API</a></li>
98         <li><a href="{% url 'oaipmh' %}">OAI-PMH</a></li>
99         <li><a href="{% url 'lesmianator' %}" lang="pl">Leśmianator</a></li>
100         <li><a href="http://polski.wolnelektury.pl" lang="pl">Materiały do nauki j. polskiego</a></li>
101         <li><a href="{% url 'subscribe' %}">{% trans "Newsletter" %}</a></li>
102       </ul>
103     </section>
104
105     <section class="infopages-box">
106       <h1>{% trans "Information" %}</h1>
107       <ul>
108         <li><a href="https://nowoczesnapolska.org.pl/prywatnosc/">{% trans "Privacy policy" %}</a></li>
109         {% infopages_on_main %}
110       </ul>
111
112       <div class="social-links">
113         <a href="https://pl-pl.facebook.com/pages/Wolne-Lektury/203084073268" title='Wolne Lektury @ Facebook'>
114           <img src="{% static "img/social/f.png" %}" alt="Wolne Lektury @ Facebook" />
115         </a>
116         <a href="https://nk.pl/profile/30441509" title='Wolne Lektury @ NK'>
117           <img src="{% static "img/social/nk.png" %}" alt="Wolne Lektury @ NK.pl" />
118         </a>
119       </div>
120     </section>
121   {% endspaceless %}
122 {% endblock %}
123
124
125 {% block add_footer %}
126   {% spaceless %}
127     {% if cite %}
128       <p>
129         {% trans "Image used:" %}
130         {% cache 3600 cite_info cite.pk %}
131           {% include 'social/cite_info.html' %}
132         {% endcache %}
133       </p>
134     {% endif %}
135   {% endspaceless %}
136 {% endblock %}