52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
{% block head %}
|
||
<meta charset="UTF-8"/>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
|
||
<meta name="author" content="{{ AUTHOR }}" />
|
||
{% endblock head %}
|
||
|
||
<link rel="preload" href="/theme/fonts/AppSILB.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
<link rel="preload" href="/theme/fonts/AppSILBI.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
<link rel="preload" href="/theme/fonts/AppSILI.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
<link rel="preload" href="/theme/fonts/AppSILR.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
|
||
<link rel="preload" href="/theme/fonts/Lato-Bold.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
<link rel="preload" href="/theme/fonts/Lato-BoldItalic.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
<link rel="preload" href="/theme/fonts/Lato-Italic.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
<link rel="preload" href="/theme/fonts/Lato-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
||
|
||
<link rel="icon" href="favicon.svg">
|
||
|
||
<style>
|
||
{% include 'style.css' %}
|
||
{% include 'fonts.css' %}
|
||
</style>
|
||
|
||
<script defer src="/theme/instant-page.js"></script>
|
||
</head>
|
||
|
||
<body>
|
||
<div class="container">
|
||
<div class="bar">
|
||
{% block info %}
|
||
{% endblock %}
|
||
</div>
|
||
|
||
{% block content %}
|
||
{% endblock %}
|
||
</div>
|
||
|
||
<p class="footer">
|
||
<span class="wname">Webring:</span> <a href="https://jason.schwarzenberger.co.nz/" class="wprev">< Previous</a> | <a href="https://webring.t0.vc" class="windex">Index</a> | <a href="https://udia.ca" class="wnext">Next ></a>
|
||
</p>
|
||
<p class="footer">
|
||
© 2012–2021 Tanner Collin
|
||
</p>
|
||
</body>
|
||
</html>
|
||
|