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

41 lines
951 B
HTML
Raw Normal View History

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 %}
2021-04-27 01:14:31 +00:00
<link rel="icon" href="favicon.svg">
<style>
{% include 'style.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-07-23 12:57:02 +00:00
<p class="footer">
<span class="wname">Webring:</span> <a href="https://jason.schwarzenberger.co.nz/" class="wprev">&lt; Previous</a> | <a href="https://webring.t0.vc" class="windex">Index</a> | <a href="https://udia.ca" class="wnext">Next &gt;</a>
</p>
<p class="footer">
2021-05-30 05:08:37 +00:00
© 20122021 Tanner Collin
</p>
2020-06-09 19:40:38 +00:00
</body>
2020-05-08 00:01:50 +00:00
</html>