Uncrazy the caching, more.
[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             {{ book.mini_box }}
29           {% endfor %}
30         </div>
31         <a href="{% url "book_list" %}">
32           <div class="note white-box normal-text" style="font-size: 18px">
33             {% trans "and many other books, poems, pictures, audiobooks…" %}
34           </div>
35         </a>
36       </div>
37     </section>
38
39     <section id="main-theme">
40       <h1>{% trans "Motifs and themes" %}</h1>
41       <div class="white-box normal-text">
42         <h2>{% trans "Theme" %}: {{ theme }}</h2>
43         <p>{% trans "Explore works with the same theme" %}</p>
44         {% for book in theme_books %}
45           {{ book.mini_box }}
46         {% endfor %}
47         {% if theme_fragment %}
48           {% cache 3600 fragment_promo theme_fragment.pk %}
49             {% include 'catalogue/fragment_promo.html' with fragment=theme_fragment %}
50           {% endcache %}
51         {% endif %}
52       </div>
53       <a class="more" href="{% url 'theme_catalogue' %}">{% trans "See motifs catalog" %}</a>
54     </section>
55
56     {% if collection %}
57       <section>
58         <h1>{% trans "Collections" %}</h1>
59         {% cache 3600 collection_box collection.pk LANGUAGE_CODE %}
60           {% include 'catalogue/collection_box.html' %}
61         {% endcache %}
62         <a class="more" href="{% url 'catalogue_collections' %}">{% trans "See collections catalog" %}</a>
63       </section>
64     {% endif %}
65
66     <section>
67       <h1>{% trans "Recent publications" %}</h1>
68         {% for book in last_published %}
69           {{ book.mini_box }}
70         {% endfor %}
71       <a class="more" href="{% url 'recent_list' %}">{% trans "More recent publications" %}</a>
72     </section>
73
74     <div class="clearboth"></div>
75
76     <section class="infopages-box">
77       <h1>{% trans "News" %}</h1>
78       {% ssi_include 'latest_blog_posts' %}
79     </section>
80
81     <section class="infopages-box">
82       <h1>{% trans "Utilities" %}</h1>
83
84       <ul>
85         <li><a href="{% url 'suggest' %}" id="suggest" class="ajaxable">{% trans "Report a bug or suggestion" %}</a></li>
86         <!--li><a href="http://turniej.wolnelektury.pl">Turniej Elektrybałtów</a></li-->
87         <li><a href="{% url 'reporting_catalogue_pdf' %}">{% trans "Download the catalogue in PDF format." %}</a></li>
88         <li><a href="{% url 'dictionary_notes' %}">{% trans "Footnotes" %}</a></li>
89         <li><a href="{% url 'suggest_publishing' %}" id="suggest-publishing" class="ajaxable">{% trans "Missing a book?" %}</a></li>
90         <li><a href="{% url 'publish_plan' %}">{% trans "Publishing plan" %}</a></li>
91         <li><a href="{% url 'api' %}">API</a></li>
92         <li><a href="{% url 'oaipmh' %}">OAI-PMH</a></li>
93         <li><a href="{% url 'lesmianator' %}" lang="pl">Leśmianator</a></li>
94         <li><a href="http://polski.wolnelektury.pl" lang="pl">Materiały do nauki j. polskiego</a></li>
95         <li><a href="{% url 'subscribe' %}">{% trans "Newsletter" %}</a></li>
96       </ul>
97     </section>
98
99     <section class="infopages-box">
100       <h1>{% trans "Information" %}</h1>
101       <ul>
102         <li><a href="https://nowoczesnapolska.org.pl/prywatnosc/">{% trans "Privacy policy" %}</a></li>
103         {% infopages_on_main %}
104       </ul>
105
106       <div class="social-links">
107         <a href="https://pl-pl.facebook.com/pages/Wolne-Lektury/203084073268" title='Wolne Lektury @ Facebook'>
108           <img src="{% static "img/social/f.png" %}" alt="Wolne Lektury @ Facebook" />
109         </a>
110         <a href="https://nk.pl/profile/30441509" title='Wolne Lektury @ NK'>
111           <img src="{% static "img/social/nk.png" %}" alt="Wolne Lektury @ NK.pl" />
112         </a>
113       </div>
114     </section>
115   {% endspaceless %}
116 {% endblock %}
117
118
119 {% block add_footer %}
120   {% spaceless %}
121     {% if cite %}
122       <p>
123         {% trans "Image used:" %}
124         {% cache 3600 cite_info cite.pk %}
125           {% include 'social/cite_info.html' %}
126         {% endcache %}
127       </p>
128     {% endif %}
129   {% endspaceless %}
130 {% endblock %}