28 lines
604 B
HTML
28 lines
604 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% render 'head.html', date: date, updated: updated, title: title, description: description, primary: primary, lang: lang, alternates: alternates, site: site, url: page.url, layout: layout, image: image %}
|
|
<style>
|
|
body {
|
|
background: var(--primary);
|
|
height: 100vh;
|
|
}
|
|
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='{{ link }}'>
|
|
<h1 style='margin: var(--regular) auto'>{{ title }}</h1>
|
|
{{ content }}
|
|
</a>
|
|
</body>
|
|
</html>
|