dxdy/app/templates/layouts/base.html

14 lines
246 B
HTML
Raw Normal View History

2023-09-07 02:22:50 +00:00
<!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>