2016-05-14 14:26:44 +01:00
|
|
|
<!DOCTYPE html>
|
2016-06-12 11:34:20 +01:00
|
|
|
<html lang="{{ DEFAULT_LANG }}">
|
2016-05-15 17:42:35 +01:00
|
|
|
<head>
|
2016-06-12 11:34:20 +01:00
|
|
|
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
2016-05-22 18:31:47 +01:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2016-07-29 12:00:17 +01:00
|
|
|
<meta http-equiv="Content-Language" content="{{ DEFAULT_LANG }}" />
|
2016-06-12 11:34:20 +01:00
|
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
|
2016-07-29 12:00:17 +01:00
|
|
|
<link rel="alternate" type="application/atom+xml" href="/{{ FEED_ATOM }}" />
|
2016-08-26 11:41:35 +01:00
|
|
|
<meta name="application-name" content="{{ SITENAME }}" />
|
|
|
|
<link rel="shortcut icon" href="/static/img/logo-transparent.png" type="image/png" />
|
2016-05-14 14:26:44 +01:00
|
|
|
|
2016-06-12 11:34:20 +01:00
|
|
|
{% block metadata %}{% endblock %}
|
2016-05-15 17:42:35 +01:00
|
|
|
|
2016-08-26 11:41:35 +01:00
|
|
|
{% for rel, size, filename in META_IMAGES %}
|
|
|
|
<link rel="{{ rel }}" sizes="{{ size }}" href="/static/img/{{ filename }}" />
|
|
|
|
{% endfor %}
|
|
|
|
|
2016-06-12 11:34:20 +01:00
|
|
|
<title>{% block htmltitle %}Page{% endblock %} - {{ SITENAME }}</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/static/css/index.css" type="text/css" />
|
2016-05-15 17:42:35 +01:00
|
|
|
</head>
|
|
|
|
<body id="page-top">
|
2016-05-20 19:44:48 +01:00
|
|
|
{% block navbar %}
|
2016-05-21 21:58:01 +01:00
|
|
|
{% include "extras/navbar.html" %}
|
2016-05-20 19:44:48 +01:00
|
|
|
{% endblock %}
|
2016-05-14 14:26:44 +01:00
|
|
|
|
2016-05-20 08:51:15 +01:00
|
|
|
{% block content %}{% endblock %}
|
2016-05-14 14:26:44 +01:00
|
|
|
|
2016-05-22 18:31:47 +01:00
|
|
|
{% include "extras/footer.html" %}
|
2016-05-21 20:35:59 +01:00
|
|
|
|
2016-06-12 11:34:20 +01:00
|
|
|
<script src="/static/js/jquery.js" type="text/javascript"></script>
|
|
|
|
<script src="/static/js/libs.js" type="text/javascript"></script>
|
|
|
|
<script src="/static/js/app.js" type="text/javascript"></script>
|
2016-05-22 18:28:01 +01:00
|
|
|
|
|
|
|
<noscript>
|
|
|
|
<style>html, body { display: none }</style>
|
|
|
|
<meta http-equiv="refresh" content="0.0;url=/no-js/" />
|
|
|
|
</noscript>
|
2016-05-15 17:42:35 +01:00
|
|
|
</body>
|
2016-05-14 14:26:44 +01:00
|
|
|
</html>
|