quitsocialmedia.club/layouts/full.html

30 lines
422 B
HTML
Raw Normal View History

2020-12-31 20:03:57 +01:00
---
2022-06-01 10:26:43 +02:00
layout: ~
2020-12-31 20:03:57 +01:00
---
<!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>
2022-06-01 10:26:43 +02:00
<a class='vertical flex' href='{{ link }}'>
<h1 style='margin: var(--regular) auto'>{{ title }}</h1>
{{ content }}
2020-12-31 20:03:57 +01:00
</a>
</body>
</html>