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