post pathing

This commit is contained in:
2026-01-25 16:09:07 -05:00
parent f9d58cbd7c
commit 552cad6b4a
19 changed files with 2834 additions and 61 deletions

21
templates/base.html Normal file
View File

@@ -0,0 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="/static/style.css"
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<nav>
<ul>
<li>Posts</li>
<li>Contact</li>
</ul>
</nav>
</header>
<div style="padding: auto">
{% block body %}{% endblock %}
</div>
</body>
</html>