Files
blog/templates/base.html
mtgmonkey c6714dfec6 add links
2025-08-02 07:48:01 -04:00

19 lines
459 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="header">
<h2><a href="https://blog.mtgmonkey.net">Andromeda's Blog</a></h2>
</div>
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>