migrate app from svelte

This commit is contained in:
2025-12-26 13:01:37 -06:00
commit 99d68bd5fb
29 changed files with 590 additions and 0 deletions

17
templates/blog.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Evan Scherrer - Blog</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" />
{% from 'components/header.html' import header %}
{% from 'components/footer.html' import footer %}
</head>
<body>
<div class="main-panel">
{{ header("Blog", "/") }}
<p>Under construction. This will be up at some point in the future (I promise).</p>
</div>
{{ footer("December 2025") }}
</body>
</html>