personal-site/themes/theme/templates/base.html

58 lines
1.7 KiB
HTML
Raw Normal View History

2020-11-02 05:05:25 +00:00
{% if PROD %}
<?php
$themeClass = '';
if (!empty($_COOKIE['theme'])) {
$themeClass = $_COOKIE['theme'];
}
?>
{% endif %}
2020-05-08 00:01:50 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2020-09-04 00:40:33 +00:00
{% block head %}
<meta charset="UTF-8"/>
2020-05-08 00:01:50 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2020-09-04 00:40:33 +00:00
<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">
2021-04-27 01:14:31 +00:00
<link rel="icon" href="favicon.svg">
<style>
{% include 'style.css' %}
2020-09-04 00:40:33 +00:00
{% include 'fonts.css' %}
</style>
2020-05-08 00:01:50 +00:00
<script defer src="/theme/instant-page.js"></script>
2020-05-08 00:01:50 +00:00
</head>
2021-05-30 05:08:37 +00:00
<body>
<div class="container">
<div class="bar">
{% block info %}
{% endblock %}
</div>
2021-04-09 00:36:39 +00:00
2021-05-30 05:08:37 +00:00
{% block content %}
2021-05-30 05:00:35 +00:00
{% endblock %}
2021-04-09 01:11:55 +00:00
</div>
2021-04-09 05:17:51 +00:00
2021-05-30 05:08:37 +00:00
<p class="copyright">
© 20122021 Tanner Collin
</p>
2020-06-09 19:40:38 +00:00
</body>
2020-05-08 00:01:50 +00:00
</html>