procent
[wolnelektury.git] / src / wolnelektury / templates / base.html
1 <!doctype html>
2 {% load i18n %}
3 {% load cache %}
4 {% load pipeline %}
5 {% load static %}
6 {% load funding_tags %}
7 {% load piwik_tags %}
8 {% load title %}
9
10 {% block settings %}
11 {% endblock %}
12
13 <html class="no-js">
14   <head>
15     <meta charset="utf-8">
16     <meta name="description" content="">
17     <meta name="viewport" content="width=device-width,minimum-scale=1">
18     <title>{% if title %}{{ title }} | {% endif %}WolneLektury.pl</title>
19     <link rel="icon" href="{% static 'img/favicon.png' %}" type="image/png"/>
20     <link rel="search" type="application/opensearchdescription+xml" title="Wolne Lektury"
21           href="{% static 'opensearch.xml' %}"/>
22     <link rel="manifest" href="/manifest.json">
23     <link rel="apple-touch-icon" href="apple-touch-icon.png">
24     {% stylesheet 'main' %}
25       {% tracking_code %}
26       {% block extrahead %}{% endblock %}
27   </head>
28   <body>
29     {% include 'header.html' %}
30
31     {% block under-menu %}{% endblock %}
32
33     {% include 'banner_procent.html' %}
34
35     {% if not funding_no_show_current %}
36       <div class="l-container funding-promo-bar">
37         {% cache 120 funding_top_bar LANGUAGE_CODE %}
38           {% funding_top_bar %}
39         {% endcache %}
40       </div>
41     {% endif %}
42
43     {% block global-content %}
44       <div class="l-container l-breadcrumb-container">
45         <div class="l-breadcrumb">
46           <a href="/"><span>{% translate "Strona główna" %}</span></a>
47           {% block breadcrumbs %}<span>{{ title }}</span>{% endblock %}
48         </div>
49         {% block breadcrumb-right %}
50         {% endblock %}
51       </div>
52
53       <main class="l-main">
54         {% block main %}{% endblock %}
55       </main>
56     {% endblock %}
57
58     {% block footer %}
59       {% include 'footer.html' %}
60     {% endblock %}
61
62     <script type="text/javascript">
63       var LANGUAGE_CODE = "{{ LANGUAGE_CODE }}";
64     </script>
65     {% javascript 'main' %}
66     {% javascript 'player' %}
67     {% block extrabody %}{% endblock %}
68     {% include 'hotjar.html' %}
69     {% csrf_token %}
70   </body>
71 </html>