bellflower/templates/base.html
2025-07-13 14:18:59 -04:00

10 lines
194 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ title }}</title>
</head>
<body style="text-align: center;">
{% block content %}{% endblock %}
</body>
</html>