3 {% load fnp_common fnp_share fnp_lang macros %}
4 {% load pipeline static %}
7 {% macro title %}{% block title %}{% endblock %}{% endmacro %}
8 {% macro site_name %}Emels{% endmacro %}
10 <html prefix="og: http://ogp.me/ns#">
12 <title>{% block full_title %}{% usemacro title %} :: {% usemacro site_name %}{% endblock %}</title>
13 <link rel="shortcut icon" type="image/png" href="{% static "img/favicon.png" %}" />
14 {% stylesheet 'base' %}
16 <meta charset="UTF-8" />
17 <meta property='og:url' content='{% block ogurl %}{{ "/"|build_absolute_uri:request }}{% endblock %}' />
18 <meta property='og:title' content='{% block og_title %}{% usemacro title %}{% endblock %}' />
19 <meta property='og:site_name' content='{% block og_site_name %}{% usemacro site_name %}{% endblock %}' />
20 <meta property='og:description' content='{% block og_description %}{% endblock %}' />
21 <meta property='og:type' content='{% block og_type %}website{% endblock %}' />
22 <meta property='og:image' content='{% block og_image %}http://emels.eu/static/img/logo.png{% endblock %}' />
23 <meta property='og:locale' content='pl_PL' />
24 <!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script></script><![endif]-->
26 <body id="{% block body-id %}body{% endblock %}">
27 <div id="header-wrapper">
28 <header class="main {% block header_class %}{% endblock %}" style="position:relative;">
29 {% if request.user.is_authenticated %}
30 <a href="{% url 'logout' %}" style="position: absolute; top:5px; right: 10px; font-size: 12px;">{% trans "Log out" %}</a>
33 <a id="logo" href="/">{% block logo %}<img src="{% static "img/logo.png" %}" alt="Emels"/>{% endblock %}</a>
36 {% trans "Project by:" %}<br/>
37 <a href="http://nowoczesnapolska.org.pl">
38 <img src="{% static "img/logo_fnp.png" %}" alt="Fundacja Nowoczesna Polska" />
43 {% block top_navigation %}
48 <div id="tagline">{% block tagline %}{% endblock %}</div>
52 <form action="{% url 'haystack_search' None %}">
53 <input name="q" placeholder="szukaj" /><button><span>→</span></button>
58 <div class="clr"></div>
62 <div id="content">{% block body %}{% endblock %}</div>
66 {% block footer_contact %}
67 <div class="footer-item">
69 fundacja Nowoczesna Polska<br/>
71 ul. MarszaĆkowska 84/92 lok. 125<br/>
73 tel/fax: +48 22 621 30 17<br/>
74 e-mail: fundacja@nowoczesnapolska.org.pl
78 Nr konta: 59 1030 0019 0109 8530 0040 5685
82 <div class="footer-item" style="margin-right:0;">
84 Webdesign Ortografika<br/>
86 {% trans "Unless stated otherwise, all materials on this site are available under" %}
87 <a href="http://creativecommons.org/licenses/by-sa/3.0/deed.pl">{% trans "Creative Commons Attribution-ShareAlike 3.0" %}</a>.
88 {% block copyrights %}{% endblock %}
93 <div class="footer-item" style="margin-right:0">
95 <img src="{% static 'img/erasmus.jpg' %}" style="height:50px"/>
98 This project has been funded with support from the European Commission.
101 This webpage reflects the views only of the author,
102 and the Commission cannot be held responsible for any use which may be made of
103 the information contained therein.
106 <div class="clr"></div>
109 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
110 {% block extra_script %}{% endblock %}