migrate app from svelte
This commit is contained in:
17
templates/blog.html
Normal file
17
templates/blog.html
Normal 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>
|
||||
Reference in New Issue
Block a user