f4ffef1ec8314beaaa8b559cf3f56de8a6db820a
[wolnelektury.git] / apps / wolnelektury_core / templates / main_page.html
1 {% extends "base.html" %}
2 {% load static from staticfiles %}
3 {% load cache chunks i18n catalogue_tags infopages_tags social_tags %}
4
5
6 {% block title %}{% trans "Wolne Lektury internet library" %}{% endblock %}
7 {% block ogtitle %}{% trans "Wolne Lektury internet library" %}{% endblock %}
8
9 {% block body %}
10     <div id="big-cite"{% if cite.image %}
11         style="
12             background-image: url('{{ cite.image.url }}');
13             background-position: 50% {{ cite.image_shift|default_if_none:50 }}%;
14         "{% endif %} >
15         {% render_cite cite %}
16     </div>
17
18     {% spaceless %}
19
20
21     <div id="promo-box">
22                 <div id="promo-box-header"><h2 class="mono">
23                         {% trans "What's new?" %}
24                 </h2></div>
25                 <div id="promo-box-body">
26                 {% chunk "promo" %}
27         </div>
28     </div>
29
30
31     <h2 class="main-last"><span class="mono">{% trans "Recent publications" %}</span></h2>
32         {% cache 60 last-published-on-main %}
33             {% for book in last_published %}
34                 {% book_mini book %}
35             {% endfor %}
36         {% endcache %}
37
38     <div class="clearboth"></div>
39
40     <div class="infopages-box">
41         <h2><span class='mono'>{% trans "News" %}</span></h2>
42         {# 135 is the id of new publications category of our master blog. perhaps this URL should go to settings. #}
43         {% cache 1800 latest-blog-posts %}
44             {% latest_blog_posts "http://nowoczesnapolska.org.pl/feed/?cat=-135" %}
45         {% endcache %}
46     </div>
47
48
49     <div class="infopages-box">
50         <h2><span class='mono'>{% trans "Utilities" %}</span></h2>
51
52         <ul>
53             <li><a href="{% url suggest %}" id="suggest" class="ajaxable">{% trans "Report a bug or suggestion" %}</a></li>
54             <!--li><a href="http://turniej.wolnelektury.pl">Turniej Elektrybałtów</a></li-->
55             <li><a href="{% url reporting_catalogue_pdf %}">
56                         {% trans "Download the catalogue in PDF format." %}
57                 </a></li>
58             <!--li><a href="{% url infopage "widget" %}">{% trans "Widget" %}</a></li-->
59             <li><a href="{% url suggest_publishing %}" id="suggest-publishing" class="ajaxable">{% trans "Missing a book?" %}</a></li>
60             <li><a href="{% url publish_plan %}">{% trans "Publishing plan" %}</a></li>
61             <li><a href="{% url api %}">API</a></li>
62             <li><a href="{% url lesmianator %}">Leśmianator</a></li>
63             <li><a href="http://polski.wolnelektury.pl">Materiały do nauki j. polskiego</a></li>
64             
65         </ul>
66     </div>
67
68
69     <div class="infopages-box">
70         <h2><span class='mono'>{% trans "Information" %}</span></h2>
71         {% cache 60 infopages-on-main LANGUAGE_CODE %}
72             {% infopages_on_main %}
73         {% endcache %}
74
75         <div class="social-links">
76             <a href="http://pl-pl.facebook.com/pages/Wolne-Lektury/203084073268"
77                 title='Wolne Lektury @ Facebook'>
78                 <img src="{% static "img/social/f.png" %}" />
79             </a>
80             <a href="http://nk.pl/profile/30441509"
81                 title='Wolne Lektury @ NK'>
82                 <img src="{% static "img/social/nk.png" %}" />
83             </a>
84         </div>
85     </div>
86
87
88     {% endspaceless %}
89
90 {% endblock %}
91
92
93 {% block add_footer %}
94 <p>{% trans "Image used:" %} 
95 {% if cite.image %}
96     {% if cite.image_link %}<a href="{{ cite.image_link }}">{% endif %}
97     {% if cite.image_title %}
98         {{ cite.image_title }}{% else %}
99         untitled{% endif %}{% if cite.image_link %}</a>{% endif %},
100     {% if cite.image_author %}{{ cite.image_author }},{% endif %}
101     {% if cite.image_license_link %}<a href="{{ cite.image_license_link }}">{% endif %}
102     {{ cite.image_license }}
103     {% if cite.image_license_link %}</a>{% endif %}
104 {% else %}
105     <a href="http://www.flickr.com/photos/lou/430980641/">books about architecture</a>,
106     saikofish@Flickr,
107     <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY NC SA</a>.
108 {% endif %}
109 </p>
110 {% endblock %}