1
1
mirror of https://github.com/xplosionmind/quitsocialmedia.club.git synced 2024-12-22 21:37:55 +01:00
quitsocialmedia.club/_layouts/full.html
2020-12-31 20:03:57 +01:00

30 lines
449 B
HTML

---
layout: none
---
<!DOCTYPE html>
<html>
{% include head.html %}
<style>
body {
background: var(--primary);
}
h1,a,a:visited {
color: var(--background);
}
h1 {
font-size: 8rem;
}
a {
width: 100vw;
height: 100vh;
padding: 10%;
}
</style>
<body>
<a class="vertical flex" href="{{ page.link }}">
<h1 style="margin: var(--regular) auto">{{ page.title }}</h1>
{{ content | markdownify }}
</a>
</body>
</html>