2019-10-17 17:41:50 +03:00
{%- macro url(destination) -%}
{%- if destination|lower|truncate(4, True, '') == 'http' or not destination -%}
{{ destination }}
{%- elif destination|first == '/' -%}
{{ SITEURL + destination }}
{%- else -%}
{{ SITEURL + '/' + destination }}
{%- endif -%}
{%- endmacro -%}
2017-11-21 11:14:12 +03:00
<!doctype html>
2013-11-24 20:53:19 +03:00
< html lang = "{{ DEFAULT_LANG }}" >
2014-06-21 15:55:27 +03:00
2014-10-28 21:34:13 +03:00
< head >
2017-11-21 11:14:12 +03:00
<!-- Required meta tags -->
2016-11-06 22:32:20 +03:00
< meta charset = "utf-8" >
2016-11-30 23:49:26 +03:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2016-12-01 02:47:09 +03:00
2016-11-09 20:07:43 +03:00
< title > {% block title %}| {{ SITENAME }}{% endblock %}< / title >
2016-11-06 22:32:20 +03:00
< link rel = "canonical" href = "{{ SITEURL }}/{{ output_file }}" >
2016-12-01 13:22:37 +03:00
{% if RFG_FAVICONS %}
2017-11-21 11:17:33 +03:00
< link rel = "apple-touch-icon" href = "{{ SITEURL }}/apple-touch-icon.png" sizes = "180x180" >
< link rel = "icon" type = "image/png" href = "{{ SITEURL }}/favicon-32x32.png" sizes = "32x32" >
< link rel = "icon" type = "image/png" href = "{{ SITEURL }}/favicon-16x16.png" sizes = "16x16" >
< link rel = "manifest" href = "{{ SITEURL }}/manifest.json" >
< meta name = "theme-color" content = "#333333" >
2016-11-06 22:32:20 +03:00
{% endif %}
2019-10-17 17:41:50 +03:00
< link rel = "stylesheet" href = "{{ url(BOOTSTRAP_CSS or '/theme/css/bootstrap.min.css') }}" >
2020-01-05 11:35:38 +01:00
< link rel = "stylesheet" href = "{{ SITEURL }}/theme/css/fontawesome.min.css" >
2016-11-12 11:29:54 +03:00
< link rel = "stylesheet" href = "{{ SITEURL }}/theme/css/pygments/{{ PYGMENTS_STYLE|default('default') }}.min.css" >
2017-11-18 10:23:11 +03:00
< link rel = "stylesheet" href = "{{ SITEURL }}/theme/css/theme.css" >
2019-09-19 14:24:09 +03:00
{% for stylesheet in THEME_CSS_OVERRIDES or () %}
2019-10-17 17:41:50 +03:00
< link rel = "stylesheet" href = "{{ url(stylesheet) }}" >
2019-09-19 14:24:09 +03:00
{% endfor %}
2019-04-27 21:50:12 +02:00
< link rel = "stylesheet" href = "https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity = "sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin = "anonymous" >
2016-11-06 22:32:20 +03:00
2017-11-21 11:15:58 +03:00
{% include 'include/xml_feeds.html' %}
2016-11-12 11:32:05 +03:00
{% block head %}{% endblock %}
{% include 'include/analytics.html' %}
2014-10-28 21:34:13 +03:00
< / head >
< body >
2016-11-07 10:18:02 +03:00
< header class = "header" >
2016-11-06 22:32:20 +03:00
< div class = "container" >
2017-11-21 11:15:58 +03:00
{% include 'include/header.html' %}
2016-11-06 22:32:20 +03:00
< / div >
2016-11-07 10:18:02 +03:00
< / header >
2016-11-06 22:32:20 +03:00
< div class = "main" >
< div class = "container" >
2016-11-30 23:49:26 +03:00
< h1 > {% block page_header %}{% endblock %}< / h1 >
< hr >
2016-11-06 22:32:20 +03:00
{% block content %}{% endblock %}
< / div >
2014-10-28 21:37:47 +03:00
< / div >
2016-11-30 21:46:02 +03:00
< footer class = "footer" >
2016-11-06 22:32:20 +03:00
< div class = "container" >
2017-11-21 11:15:58 +03:00
{% include 'include/footer.html' %}
2016-11-06 22:32:20 +03:00
< / div >
2016-11-07 10:18:02 +03:00
< / footer >
2019-10-18 18:08:37 +03:00
{% for script in THEME_JS_OVERRIDES or () %}
< script type = "text/javascript" src = "{{ url(script) }}" crossorigin = "anonymous" > < / script >
{% endfor %}
2016-11-07 10:18:02 +03:00
< / body >
2014-05-29 00:54:52 +03:00
2013-11-24 20:53:19 +03:00
< / html >