18 lines
539 B
HTML
18 lines
539 B
HTML
<!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>
|