36b1452fb3497454325ec838c8144fb9916c39a3
[wolnelektury.git] / src / wolnelektury / templates / 2022 / base.html
1 <!doctype html>
2 {% load cache %}
3 {% load pipeline %}
4 {% load static %}
5 {% load funding_tags %}
6 {% load piwik_tags %}
7 {% load title %}
8
9 {% block settings %}
10 {% endblock %}
11
12 <html class="no-js">
13   <head>
14     <meta charset="utf-8">
15     <meta name="description" content="">
16     <meta name="viewport" content="width=device-width,initial-scale=1">
17     <title>{% if title %}{{ title }} | {% endif %}WolneLektury.pl</title>
18     <link rel="apple-touch-icon" href="apple-touch-icon.png">
19     {% stylesheet '2022' %}
20       <script src="scripts/modernizr.js"></script>
21
22       <link rel="preconnect" href="https://fonts.googleapis.com">
23       <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
24       <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap" rel="stylesheet">
25
26       {% tracking_code %}
27       {% block extrahead %}{% endblock %}
28   </head>
29   <body>
30     {% include '2022/header.html' %}
31
32     {% block under-menu %}{% endblock %}
33
34     {% if not funding_no_show_current %}
35       <div class="l-container funding-promo-bar">
36         {% cache 120 funding_top_bar LANGUAGE_CODE %}
37           {% funding_top_bar_2022 %}
38         {% endcache %}
39       </div>
40     {% endif %}
41
42     {% block global-content %}
43       <div class="l-container">
44         <div class="l-breadcrumb">
45           <a href="/"><span>Strona główna</span></a>
46           {% block breadcrumbs %}<span>{{ title }}</span>{% endblock %}
47         </div>
48       </div>
49
50       <main class="l-main">
51         {% block main %}{% endblock %}
52       </main>
53     {% endblock %}
54
55     <div class="l-container l-change-pop">
56       <h3>Zmieniamy się!</h3>
57       <p>
58         Jeżeli to czytasz jesteś jedną z osób, której prezentujemy nowy wygląd części stron.
59         Będziemy bardzo! wdzięczni za Twoją opinię – <a href='/formularz/ux-strona-ksiazki-T1/' target="_blank">możesz nam ją przesłać tutaj</a>.
60         Jeżeli wolisz klasyczny wygląd - wystarczy, że <a class="quit-experiment" href="#">klikniesz tutaj</a>
61       </p>
62       <!-- button class="l-change-pop__close">
63            <i class="icon icon-close"></i>
64            </button -->
65     </div>
66
67
68     {% include '2022/footer.html' %}
69
70     <script src="{% static '2022/scripts/vendor.js' %}"></script>
71     <script src="{% static '2021/scripts/main.js' %}"></script>
72
73     <script type="text/javascript">
74       var LANGUAGE_CODE = "{{ LANGUAGE_CODE }}";
75     </script>
76     {% javascript '2022' %}
77     {% javascript '2022_player' %}
78     {% block extrabody %}{% endblock %}
79     {% include '2022/hotjar.html' %}
80   </body>
81 </html>