CMG/templates/base.html
2025-01-25 22:42:22 -05:00

13 lines
242 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>{% block title %}{% endblock %}</title>
</head>
<body class="{% block bodyclass %}{% endblock %}">
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>