38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
{% 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://mastodon.online/@hostea" />
|
|
<link rel="stylesheet" href="{{ get_url(path='/main.css') }}" />
|
|
<link
|
|
rel="stylesheet"
|
|
media="screen and (max-width: 1300px)"
|
|
href="{{ get_url(path='/mobile.css') }}"
|
|
/>
|
|
|
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
{% block meta %} {% endblock %}
|
|
</head>
|
|
<body class="base">
|
|
<header>
|
|
{% include "nav.html" %}
|
|
</header>
|
|
<!-- See ../sass/main.scss. Required for pushing footer to the very
|
|
bottom of the page -->
|
|
<div class="main__content-container">
|
|
<main>
|
|
{% block content %} {% endblock %}
|
|
</main>
|
|
{% include "footer.html" %}
|
|
</div>
|
|
</body>
|
|
</html>
|