staxman-old/templates/base.html

12 lines
295 B
HTML
Raw Normal View History

2023-11-18 13:29:19 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-11-18 15:35:30 +00:00
<title>{% block title %}{{ title }} - staxman{% endblock %}</title>
2023-11-18 13:29:19 +00:00
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>