1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/templates/base.html
2016-08-16 22:23:02 +01:00

53 lines
2 KiB
HTML

<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Language" content="{{ DEFAULT_LANG }}" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<link rel="alternate" type="application/atom+xml" href="/{{ FEED_ATOM }}" />
{% block metadata %}{% endblock %}
<title>{% block htmltitle %}Page{% endblock %} - {{ SITENAME }}</title>
<link rel="stylesheet" href="/static/css/index.css" type="text/css" />
<link rel="shortcut icon" href="/static/img/logo-transparent.png" type="image/png" />
</head>
<body id="page-top">
{% block navbar %}
{% include "extras/navbar.html" %}
{% endblock %}
{% block content %}{% endblock %}
{% include "extras/footer.html" %}
<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>
{% if BUILD_PRODUCTION %}
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://piwik.theorangeone.net/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="https://piwik.theorangeone.net/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
{% endif %}
<noscript>
<style>html, body { display: none }</style>
<meta http-equiv="refresh" content="0.0;url=/no-js/" />
</noscript>
</body>
</html>