Initial templates

This commit is contained in:
Mike Wilson
2025-06-23 12:37:34 -04:00
parent f04cac6107
commit d12af583a3
6 changed files with 60 additions and 0 deletions

17
templates/base.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MyBlog</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>