Various style fixes.
[wolnelektury.git] / wolnelektury / templates / catalogue / main_page.html
1 {% extends "base.html" %}
2 {% load catalogue_tags chunks cache %}
3
4 {% block bodyid %}main-page{% endblock %}
5
6 {% block body %}
7     <div id="site-description">
8         {% chunk "site-description" %}
9     </div>
10     <div class="clearboth"></div>
11     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
12         <p>{{ form.q }} {{ form.tags }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url catalogue.views.book_list %}">zobacz spis utworów</a> w naszym zbiorze</p>
13     </form>
14     
15     <div id="intro">
16         <p id="tags-description">↓ Przeglądaj lektury według wybranych kategorii i motywów literackich ↓</p>
17         <div id="propaganda">
18             <h2>Twoje półki z lekturami</h2>
19             {% if user.is_authenticated %}
20                 {% if shelves %}
21                 <ul class="shelf-list">
22                 {% for shelf in shelves %}
23                     <li><a href="{% url delete_shelf shelf.slug %}" class="delete-shelf">usuń</a> <a href="{{ shelf.get_absolute_url }}" class="visit-shelf">{{ shelf.name }}</a></li>
24                 {% endfor %}
25                 </ul>
26                 {% else %}
27                 <p>Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć półkę poniżej.</p>
28                 {% endif %}
29                 <hr />
30                 <form action="{% url catalogue.views.new_set %}" method="post" accept-charset="utf-8" class="cuteform">
31                 <ol>
32                     <li>{{ new_set_form.name }} <input type="submit" value="Utwórz półkę"/></li>
33                 </ol>
34                 </form>
35             {% else %}
36                 <p>Stwórz własny zestaw lektur!</p>
37                 <p>Aby zarządzać swoimi półkami musisz się <a class="login-register-link" href="#">zalogować</a>.</p>
38             {% endif %}
39         </div>
40         <div id="tags-list">
41             <div id="categories-list">
42                 {% if categories.author %}
43                     <h2>Autorzy</h2>
44                     <ul>
45                     {% for author in categories.author %}
46                         <li><a href="{% catalogue_url author %}">{{ author }}&nbsp;({{ author.count }})</a></li>
47                     {% endfor %}
48                     </ul>
49                 {% endif %}
50             
51                 {% if categories.epoch %}
52                 <h2>Epoki</h2>
53                     <ul>
54                     {% for epoch in categories.epoch %}
55                         <li><a href="{% catalogue_url epoch %}">{{ epoch }}&nbsp;({{ epoch.count }})</a></li>
56                     {% endfor %}
57                     </ul>                
58                 {% endif %}
59             
60                 {% if categories.kind %}
61                     <h2>Rodzaje</h2>
62                     <ul>
63                     {% for kind in categories.kind %}
64                         <li><a href="{% catalogue_url kind %}">{{ kind }}&nbsp;({{ kind.count }})</a></li>
65                     {% endfor %}
66                     </ul>                
67                 {% endif %}
68             
69                 {% if categories.genre %}
70                     <h2>Gatunki literackie</h2>
71                     <ul>
72                     {% for genre in categories.genre %}
73                         <li><a href="{% catalogue_url genre %}">{{ genre }}&nbsp;({{ genre.count }})</a></li>
74                     {% endfor %}
75                     </ul>                
76                 {% endif %}
77             </div>
78             <div id="themes-list">
79                 {% if categories.theme %}
80                     <h2>Motywy</h2>
81                     <ul>
82                     {% for theme in fragment_tags %}
83                         <li><a href="{% catalogue_url theme %}">{{ theme }}&nbsp;({{ theme.count }})</a></li>
84                     {% endfor %}
85                     </ul>                
86                 {% endif %}
87             </div>
88             <div class="clearboth"></div>
89         </div>
90     </div>
91     <div class="clearboth"></div>
92     
93     <div id="site-info">
94         <div id="latest-blog-posts">
95             <h2>Aktualności</h2>
96             {% cache 1800 latest-blog-posts %}
97             {% latest_blog_posts "http://wolnepodreczniki.pl/feed/?s=Wolne%20Lektury" %}
98             {% endcache %}
99         </div>
100         <div id="you-can-help">
101             <h2>Możesz nam pomóc!</h2>
102             <p>Utwory włączane sukcesywnie do naszej biblioteki staramy się opracowywać jak najdokładniej. Jest to możliwe tylko dzięki współpracującym z nami wolontariuszom.</p>
103             <p>Zapraszamy wszystkie osoby, które chcą współtworzyć szkolną bibliotekę internetową Wolne Lektury.</p>
104         </div>
105         <div id="about-us">
106             <h2>O projekcie</h2>
107             <p>Biblioteka internetowa z lekturami szkolnymi „Wolne Lektury” (<a href="http://wolnelektury.pl">www.wolnelektury.pl</a>) to projekt realizowany przez Fundację Nowoczesna Polska. Działa od 2007 roku i udostępnia w swoich zbiorach lektury szkolne, które są zalecane do użytku przez Ministerstwo Edukacji Narodowej i które trafiły już do domeny publicznej.</p>
108         </div>
109     </div>
110 {% endblock %}