zona-test/templates/base.html
2025-06-21 22:13:31 -04:00

20 lines
408 B
HTML

<!doctype html>
<html>
<head>
<title>{{ metadata.title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<link
href="{{ metadata.style }}"
rel="stylesheet"
type="text/css"
media="all"
/>
</head>
<body>
<div id="container">
{% block content %}{% endblock %}
</div>
</body>
</html>