Files
blog/templates/base.html
mtgmonkey 0a1b59e281 styles
2025-07-23 16:09:33 -04:00

16 lines
344 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Andromeda's blog</title>
<link rel="stylesheet" type="text/css" href="/styles.css">
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>