CMG/templates/base.html

13 lines
249 B
HTML

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