Generally working version.
[wolnelektury.git] / src / wolnelektury / templates / main_page.html
1 {% extends "base.html" %}
2 {% load static from staticfiles %}
3 {% load i18n catalogue_tags infopages_tags social_tags %}
4 {% load ssi_include from ssify %}
5
6
7 {% block title %}{% trans "Wolne Lektury internet library" %}{% endblock %}
8 {% block ogtitle %}{% trans "Wolne Lektury internet library" %}{% endblock %}
9
10 {% block body %}{% spaceless %}
11
12     {% choose_cite as cite_pk %}
13     {{ cite_pk.if }}
14         {% ssi_include 'social_cite_main' pk=cite_pk %}
15     {{ cite_pk.endif }}
16
17     <section id="main-library">
18         <h1>W naszej cyfrowej bibliotece znajdziesz</h1>
19         <div class="main-library-row">
20             <div class="covers">
21             {% for b in best %}
22                 {% ssi_include 'catalogue_book_mini' pk=b.pk %}
23             {% endfor %}
24             </div>
25             <div class="note white-box normal-text" style="font-size: 18px">
26             i wiele innych książek, wierszy, obrazów, audiobooków…
27             </div>
28         </div>
29     </section>
30
31     <section id="main-theme">
32         <h1>Motywy i tematy</h1>
33         <div class="white-box normal-text">
34         <h2>{% trans "Theme" %}: {{ theme }}</h2>
35         <p>Utwory, w których występuje ten motyw:</p>
36         {% for book in theme_books %}
37             {% ssi_include 'catalogue_book_mini' pk=book.pk %}
38         {% endfor %}
39         {% if theme_fragment %}
40             {% ssi_include 'catalogue_fragment_promo' pk=theme_fragment.pk %}
41         {% endif %}
42         </div>
43         <a class="more" href="{% url 'theme_catalogue' %}">Zobacz katalog motywów</a>
44     </section>
45
46     <section class="tag-box-section">
47         <h1>Autorzy</h1>
48       <a class="tag-box" href="{{ author.get_absolute_url }}">
49       {% ssi_include "catalogue_tag_box" pk=author.pk %}
50       </a>
51         <a class="more" href="{% url 'author_catalogue' %}">Zobacz katalog autorów</a>
52     </section>
53
54     <section class="tag-box-section">
55         <h1>Gatunki</h1>
56       <a class="tag-box" href="{{ genre.get_absolute_url }}">
57       {% ssi_include "catalogue_tag_box" pk=genre.pk %}
58       </a>
59         <a class="more" href="{% url 'genre_catalogue' %}">Zobacz katalog gatunków</a>
60     </section>
61
62     <section class="tag-box-section">
63         <h1>Rodzaje</h1>
64       <a class="tag-box" href="{{ kind.get_absolute_url }}">
65       {% ssi_include "catalogue_tag_box" pk=kind.pk %}
66       </a>
67         <a class="more" href="{% url 'kind_catalogue' %}">Zobacz katalog rodzajów</a>
68     </section>
69
70     <section class="tag-box-section">
71         <h1>Epoki</h1>
72       <a class="tag-box" href="{{ epoch.get_absolute_url }}">
73       {% ssi_include "catalogue_tag_box" pk=epoch.pk %}
74       </a>
75         <a class="more" href="{% url 'epoch_catalogue' %}">Zobacz katalog epok</a>
76     </section>
77
78     <section>
79         <h1>Kolekcje</h1>
80         {% ssi_include 'catalogue_collection_box' pk=collection.pk %}
81         <a class="more" href="{% url 'catalogue_collections' %}">Zobacz katalog kolekcji</a>
82     </section>
83
84     <section>
85         <h1>{% trans "Recent publications" %}</h1>
86             {% for book in last_published %}
87                 {% ssi_include 'catalogue_book_mini' pk=book.pk %}
88             {% endfor %}
89         <a class="more" href="{% url 'recent_list' %}">{% trans "More recent publications" %}</a>
90     </section>
91
92     <div class="clearboth"></div>
93
94     <section class="infopages-box">
95         <h1>{% trans "News" %}</h1>
96         {% ssi_include 'latest_blog_posts' %}
97     </section>
98
99
100     <section class="infopages-box">
101         <h1>{% trans "Utilities" %}</h1>
102
103         <ul>
104             <li><a href="{% url 'suggest' %}" id="suggest" class="ajaxable">{% trans "Report a bug or suggestion" %}</a></li>
105             <!--li><a href="http://turniej.wolnelektury.pl">Turniej Elektrybałtów</a></li-->
106             <li><a href="{% url 'reporting_catalogue_pdf' %}">{% trans "Download the catalogue in PDF format." %}</a></li>
107             <li><a href="{% url 'dictionary_notes' %}">{% trans "Footnotes" %}</a></li>
108             <li><a href="{% url 'suggest_publishing' %}" id="suggest-publishing" class="ajaxable">{% trans "Missing a book?" %}</a></li>
109             <li><a href="{% url 'publish_plan' %}">{% trans "Publishing plan" %}</a></li>
110             <li><a href="{% url 'api' %}">API</a></li>
111             <li><a href="{% url 'oaipmh' %}">OAI-PMH</a></li>
112             <li><a href="{% url 'lesmianator' %}" lang="pl">Leśmianator</a></li>
113             <li><a href="http://polski.wolnelektury.pl" lang="pl">Materiały do nauki j. polskiego</a></li>
114
115         </ul>
116     </section>
117
118
119     <section class="infopages-box">
120         <h1>{% trans "Information" %}</h1>
121         <ul>
122             <li><a href="https://nowoczesnapolska.org.pl/prywatnosc/">{% trans "Privacy policy" %}</a></li>
123             {% infopages_on_main %}
124         </ul>
125
126         <div class="social-links">
127             <a href="https://pl-pl.facebook.com/pages/Wolne-Lektury/203084073268" title='Wolne Lektury @ Facebook'>
128                 <img src="{% static "img/social/f.png" %}" alt="Wolne Lektury @ Facebook" />
129             </a>
130             <a href="https://nk.pl/profile/30441509" title='Wolne Lektury @ NK'>
131                 <img src="{% static "img/social/nk.png" %}" alt="Wolne Lektury @ NK.pl" />
132             </a>
133         </div>
134     </section>
135
136
137 {% endspaceless %}{% endblock %}
138
139
140 {% block add_footer %}{% spaceless %}
141 {{ cite_pk.if }}
142     <p>{% trans "Image used:" %}
143     {% ssi_include 'social_cite_info' pk=cite_pk %}
144     </p>
145 {{ cite_pk.endif }}
146 {% endspaceless %}{% endblock %}