2022-09-08 02:16:15 +05:30
|
|
|
{% import "macros.html" as macros %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
|
|
<link rel="me" href="https://gts.batsense.net.net/@librepages" />
|
|
|
|
<link rel="stylesheet" href="{{ get_url(path='/main.css') }}" />
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
media="screen and (max-width: 1300px)"
|
|
|
|
href="{{ get_url(path='/mobile.css') }}"
|
|
|
|
/>
|
|
|
|
|
2022-10-04 18:09:44 +05:30
|
|
|
|
2022-09-09 19:15:56 +05:30
|
|
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2022-09-08 02:16:15 +05:30
|
|
|
|
|
|
|
{% block meta %} {% endblock %}
|
2022-09-09 19:15:56 +05:30
|
|
|
<!-- Matomo -->
|
|
|
|
<script>
|
|
|
|
var _paq = (window._paq = window._paq || []);
|
|
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
|
|
_paq.push(["setCookieDomain", "*.librepages.org"]);
|
|
|
|
_paq.push(["trackPageView"]);
|
|
|
|
_paq.push(["enableLinkTracking"]);
|
|
|
|
(function () {
|
|
|
|
var u = "//matomo.librepages.org/";
|
|
|
|
_paq.push(["setTrackerUrl", u + "matomo.php"]);
|
|
|
|
_paq.push(["setSiteId", "3"]);
|
|
|
|
var d = document,
|
|
|
|
g = d.createElement("script"),
|
|
|
|
s = d.getElementsByTagName("script")[0];
|
|
|
|
g.async = true;
|
|
|
|
g.src = u + "matomo.js";
|
|
|
|
s.parentNode.insertBefore(g, s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<noscript
|
|
|
|
><p>
|
|
|
|
<img
|
|
|
|
src="//matomo.librepages.org/matomo.php?idsite=3&rec=1"
|
|
|
|
style="border: 0"
|
|
|
|
alt=""
|
|
|
|
/></p
|
|
|
|
></noscript>
|
|
|
|
<!-- End Matomo Code -->
|
2022-09-08 02:16:15 +05:30
|
|
|
</head>
|
|
|
|
<body class="base">
|
2022-10-04 18:09:44 +05:30
|
|
|
<div id="check-icon" data-check="{{ get_url(path='/icons/check.svg', cachebust=true) }}"></div>
|
|
|
|
<div id="clipboard-icon" data-clipboard="{{ get_url(path='/icons/clipboard.svg', cachebust=true) }}"></div>
|
2022-09-09 19:15:56 +05:30
|
|
|
<header>{% include "nav.html" %}</header>
|
2022-09-08 02:16:15 +05:30
|
|
|
<!-- See ../sass/main.scss. Required for pushing footer to the very
|
|
|
|
bottom of the page -->
|
|
|
|
<div class="main__content-container">
|
2022-09-09 19:15:56 +05:30
|
|
|
<main>{% block content %} {% endblock %}</main>
|
2022-09-08 02:16:15 +05:30
|
|
|
{% include "footer.html" %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|