2020-09-17 14:41:50 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
{% if page.lang == 'it' %}
|
|
|
|
<html lang="it">
|
|
|
|
{% else %}
|
|
|
|
<html lang="en">
|
|
|
|
{% endif %}
|
|
|
|
<head>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function darktoggle() {
|
|
|
|
var element = document.body;
|
|
|
|
element.classList.toggle("light");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{% seo %}
|
|
|
|
|
2020-09-24 19:23:22 +02:00
|
|
|
<title>Quit Social Media | {{ page.title }}</title>
|
2020-09-17 14:41:50 +02:00
|
|
|
<link href="/fonts/inter/inter.css" type="text/css" rel="stylesheet" />
|
2020-09-24 19:23:22 +02:00
|
|
|
<link rel="styleseheet" type="text/css" href="/fonts/Ubuntu-Mono/ububtu-mono.css" />
|
2020-09-17 14:41:50 +02:00
|
|
|
<link href="/style.css" type="text/css" rel="stylesheet" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="icon" href="/logos/favicon.svg" sizes="32x32" />
|
|
|
|
<link rel="icon" href="/logos/favicon.svg" sizes="192x192" />
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="{{ page.primary }}">
|
|
|
|
<meta name="theme-color" content="{{ page.primary }}" />
|
|
|
|
<meta property="og:image" content="{{ page.img }}" />
|
|
|
|
{% if page.style == 'true' %}<style>body { --primary: {{ page.primary }} !important }</style>{% endif %}
|
|
|
|
|
|
|
|
</head><body>
|
|
|
|
|
|
|
|
<a href="#"><svg class="top button" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g style="fill:var(--primary)"><rect transform="rotate(180 12 12)" width="24" height="24" opacity="0"/><path d="M6.63 11.61L12 7.29l5.37 4.48A1 1 0 0 0 18 12a1 1 0 0 0 .77-.36 1 1 0 0 0-.13-1.41l-6-5a1 1 0 0 0-1.27 0l-6 4.83a1 1 0 0 0-.15 1.41 1 1 0 0 0 1.41.14z"/><path d="M12.64 12.23a1 1 0 0 0-1.27 0l-6 4.83a1 1 0 0 0-.15 1.41 1 1 0 0 0 1.41.15L12 14.29l5.37 4.48A1 1 0 0 0 18 19a1 1 0 0 0 .77-.36 1 1 0 0 0-.13-1.41z"/></g></svg>
|
|
|
|
</a>
|
|
|
|
{% include header.html lang=page.lang %}
|
|
|
|
{{ content }}
|
|
|
|
{% include footer.html lang=page.lang %}
|
2020-09-24 19:23:22 +02:00
|
|
|
<script async data-goatcounter="https://quit-social-media.goatcounter.com/count" src="//gc.zgo.at/count.js"></script>
|
2020-09-17 14:41:50 +02:00
|
|
|
</body></html>
|