2 {% load url from future %}
4 {% load fnp_common fnp_share fnp_lang macros %}
9 {% block title %}{% endblock %}
11 {% macro site_name %}MySite{% endmacro %}
13 <html prefix="og: http://ogp.me/ns#">
15 <title>{% block full_title %}{% usemacro title %} :: {% usemacro site_name %}{% endblock %}</title>
16 <link rel="shortcut icon" type="image/png" href="{% static "img/favicon.png" %}" />
17 {% compressed_css 'base' %}
19 <meta charset="UTF-8" />
20 <meta property='og:url' content='{% block "ogurl" %}{{ "/"|build_absolute_uri:request }}{% endblock %}' />
21 <meta property='og:title' content='{% block og_title %}{% usemacro title %}{% endblock %}' />
22 <meta property='og:site_name' content='{% usemacro site_name %}' />
23 <meta property='og:description' content='{% block og_description %}{% endblock %}' />
24 <meta property='og:type' content='{% block og_type %}website{% endblock %}' />
25 <meta property='og:image' content='{% block og_image %}{% endblock %}' />
26 <meta property='og:locale' content='pl_PL' />
29 {% block "body" %}{% endblock %}
31 {% compressed_js 'base' %}