flask-skaf/templates/layouts/base.html
2023-07-21 18:43:49 +02:00

14 lines
246 B
HTML

<!doctype html>
<html>
<head>
<title>App</title>
</head>
<body>
<div class="container">
{% include "includes/header.html" %}
{% block content %}{% endblock content %}
{% include "includes/footer.html" %}
</div>
</body>
</html>