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