removed templates and updated content

This commit is contained in:
Daniel Fichtinger 2025-06-27 23:30:41 -04:00
parent 60600a9a21
commit 7bbb03eeac
9 changed files with 21 additions and 47 deletions

View file

@ -1,34 +0,0 @@
<!doctype html>
<html>
<head>
<title>{{ metadata.title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<link
href="{{ metadata.style }}"
rel="stylesheet"
type="text/css"
media="all"
/>
</head>
<body>
<div id="container">
{% if header %}
<header id="header">
<center>
{{ header | safe }}
</center>
<hr>
</header>
{% endif %}
{% block content %}{% endblock %}
{% if footer %}
<footer id="footer">
<hr>
{{ footer | safe }}
</footer>
{% endif %}
</div>
</body>
</html>