Initial shit.

This commit is contained in:
Hazel Snider 2020-09-08 21:10:48 -04:00
commit fbb4f25b77
Signed by: hazelra
GPG key ID: 09213F100E5E4E67
7 changed files with 183 additions and 0 deletions

23
templates/base.html Normal file
View file

@ -0,0 +1,23 @@
<!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 %}Hazelnut{% endblock title %}</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.png" />
{% endblock head %}
</head>
<body>
{% include "header.html" %}
<div id="content">
{% block content %}
{% endblock content %}
</div>
<div id="footer">
{% block footer %}
{% endblock footer %}
</div>
</body>
</html>