fixes #2117: upgrade jPlayer to 2.4
[wolnelektury.git] / apps / wolnelektury_core / templates / superbase.html
1 <!DOCTYPE html>
2 <html lang="{{ LANGUAGE_CODE }}" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
3         {% load cache compressed i18n %}
4         {% load static from staticfiles %}
5     {% load catalogue_tags reporting_stats sponsor_tags %}
6     <head>
7         <meta charset="utf-8">
8         <meta name="application-name" content="Wolne Lektury" />
9         <meta property="og:site_name" content="Wolne Lektury" />
10         <meta property="og:title" content="{% block ogtitle %}{% endblock %}" />
11         <meta property="og:type" content="{% block ogtype %}website{% endblock %}" />
12         <meta property="og:image" content="{% block ogimage %}{{ FULL_STATIC_URL }}img/wiatrak.png{% endblock %}" />
13         <meta name="description" 
14             content="{% block metadescription %}Darmowe opracowane, pełne teksty lektur, e-booki, audiobooki i pliki DAISY na wolnej licencji.{% endblock %}" />
15         {% block ogextra %}{% endblock %}
16         
17
18         <title>{% block title %}{% trans "Wolne Lektury" %} :: 
19             {% block titleextra %}{% endblock %}{% endblock %}</title>
20         <link rel="icon" href="{% static "img/favicon.png" %}" type="image/png" />
21         <link rel="search" type="application/opensearchdescription+xml" title="Wolne Lektury" 
22             href="{% static "opensearch.xml" %}" />
23         {% compressed_css "all" %}
24         <link href="{% static "css/core.css" %}" rel="stylesheet" type="text/css" media="screen" />
25         <link href="{% static "css/antiscreen.css" %}" rel="stylesheet" type="text/css" media="screen and (max-width: 480px)" />
26         {#% compressed_css "handheld" %#}
27         <!--[if IE]>
28                 {% compressed_css "ie" %}
29         <![endif]-->
30
31         {% block extrahead %}
32         {% endblock %}
33     </head>
34     <body id="{% block bodyid %}base{% endblock %}">
35
36         {% block bodycontent %}
37
38                 <div id="header-bg"></div>
39
40         <div id="header">
41
42         <div id="header-content">
43             <div id="logo">
44                 <a class="logo" href="/">
45                 <img id="logo-image" src="{% static "img/logo-neon.png" %}"
46                     alt="Wolne Lektury" /></a>
47             </div>
48
49             <div id="tagline">
50                 <span>
51                 {% cache 60 tagline LANGUAGE_CODE %}
52                     {% url 'book_list' as b %}
53                     {% url 'infopage' 'prawa' as r %}
54                         {% count_books book_count %}
55                     {% blocktrans count book_count as c %}
56                     <a href='{{b}}'>{{c}}</a> free reading you have <a href='{{r}}'>right to</a>
57                     {% plural %}
58                     <a href='{{b}}'>{{c}}</a> free readings you have <a href='{{r}}'>right to</a>
59                     {% endblocktrans %}
60                 {% endcache %}
61                 </span>
62             </div>
63
64             <p id="user-info" class="mono">
65                 {% if user.is_authenticated %}
66                     {% trans "Welcome" %}, 
67                         <span class="hidden-box-wrapper">
68                                 <a href="{% url 'user_settings' %}" class="hidden-box-trigger">
69                                         <strong>{{ user.username }}</strong>
70                                 </a>
71                                 <span id="user-menu" class="hidden-box">
72                                         <a href="{% url 'account_set_password' %}">{% trans "Password" %}</a><br/>
73                                         <a href="{% url 'account_email' %}">{% trans "E-mail" %}</a><br/>
74                                         <a href="{% url 'socialaccount_connections' %}">{% trans "Social accounts" %}</a><br/>
75                                 </span>
76                         </span>
77                     | <a href="{% url 'social_my_shelf' %}" id="user-shelves-link">{% trans "My shelf" %}</a>
78                     {% if user.is_staff %}
79                     | <a href="/admin/">{% trans "Administration" %}</a>
80                     {% endif %}
81                     | <a href="{% url 'logout' %}?next={% block logout %}{{ request.get_full_path }}{% endblock %}">{% trans "Logout" %}</a>
82                 {% else %}
83                     <a href="{% url 'login' %}?next={{ request.path }}"
84                         id="login" class="ajaxable">
85                             {% trans "Sign in" %}</a>
86                     /
87                     <a href="{% url 'register' %}?next={{ request.path }}"
88                         id="register" class="ajaxable">
89                             {% trans "Register" %}</a>
90                 {% endif %}
91             </p>
92
93
94             <div class="clearboth"></div>
95
96         </div>
97         </div>
98
99         <div id="half-header">
100         <div id="half-header-content">
101
102
103
104             <form id="search-area" action="{% url 'search' %}" class="hidelabels">
105                 
106                 <div id="search-field" class="grid-line">
107                         <label for="search">{{search_form.q.label}}</label>
108                   {{search_form.q}}
109 <!--                    <input title="np. Leśmian" name="q" autocomplete="off" data-source="/fullsearch/hint/">-->
110                 </div><div id="search-button">
111                     <button type='submit'><span class="mono">{% trans "Search" %}</span></button>
112                 </div>
113                 
114                 <div class="clearboth"></div>
115             </form>
116
117
118
119         </div>
120         </div>
121
122
123
124         <div id="main-content">
125
126             <div id="nav-line">
127                 {% catalogue_menu %}
128
129             <div id="lang-menu" class="hoverget">
130                 <span id='lang-button' class='mono hoverclick'>
131                     <span class="lang-flag">⚐</span>
132                     {% trans "Language versions" %}</span>
133                 <div id="lang-menu-items">
134                 {% for lang in LANGUAGES %}
135                     <form action="{% url 'django.views.i18n.set_language' %}" method="post">
136                     {% csrf_token %}
137                     <input type="hidden" name="language" value="{{ lang.0 }}" />
138                     <button type="submit"
139                         lang="{{ lang.0 }}"
140                         class="{% ifequal lang.0 LANGUAGE_CODE %}active{% endifequal %} mono"
141                         >{{ lang.1 }}</button>
142                     </form>
143                 {% endfor %}
144                 </div>
145             </div>
146             </div>
147
148             <div class="clearboth"></div>
149
150
151
152             {% block body %}
153             {% endblock %}
154
155
156
157
158         <div class="clearboth"></div>
159
160         </div>{# end main-content #}
161
162
163         <div id="footer">
164         <div id="footer-content">
165             <p>
166                 {% blocktrans %}
167                                 Wolne Lektury is a project lead by <a href="http://nowoczesnapolska.org.pl/">Modern Poland Foundation</a>.
168                                 Digital reproductions are made by <a href="http://www.bn.org.pl/">The National Library</a>, <a href="http://www.bs.katowice.pl/">Biblioteka Śląska</a> and <a href="http://www.bibliotekaelblaska.pl/">Biblioteka Elbląska</a>, based on TNL, BŚ and BE resources.
169                                 Hosting: <a href="http://www.icm.edu.pl/">ICM</a>.
170                                 {% endblocktrans %}
171             </p>
172             <p>
173                 {% blocktrans %}
174                                 Modern Poland Foundation, 00-514 Warsaw, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17
175                 e-mail: <a href="mailto:fundacja@nowoczesnapolska.org.pl">fundacja@nowoczesnapolska.org.pl</a>
176                                 {% endblocktrans %}
177             </p>
178             <p>Nowa strona biblioteki Wolne Lektury powstała dzięki środkom otrzymanym w ramach Programu Operacyjnego Fundusz Inicjatyw Obywatelskich, Senatu RP (zadanie realizowane w ramach zlecania przez Kancelarię Senatu zadań w zakresie opieki nad Polonią i Polakami za granicą w 2011 r.) oraz Narodowego Instytutu Audiowizualnego w ramach programu Dziedzictwo Cyfrowe.</p>
179
180             {% block add_footer %}{% endblock %}
181
182                         {% sponsor_page "footer" %}
183         </div>
184         </div>
185
186
187
188         {# template #}
189         <div id="ajaxable-window" class='dialog-window'>
190             <div class="header mono"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
191             <div class="target">
192                 <p><img src="{% static "img/indicator.gif" %}" alt="*"/> {% trans "Loading" %}</p>
193             </div>
194         </div>
195
196
197         {% endblock bodycontent %}
198
199
200         <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
201         <script type="text/javascript">
202             var LANGUAGE_CODE = "{{ LANGUAGE_CODE }}";
203             var STATIC_URL = "{{ STATIC_URL }}";
204         </script>
205         {% compressed_js "base" %}
206
207         {{ piwik_tag|safe }}
208
209                 {% block extrabody %}
210                 {% endblock %}
211
212         <script src="{% static "js/modernizr.custom.19652.js" %}"></script>
213     </body>
214 </html>