Files
myapp-full/myapp/templates/skeleton.html

15 lines
182 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="ru">
{% include 'header.html' %}
<body>
{% include 'topbar.html' %}
<div class="container">
{% block body %}
{% endblock %}
</div>
</body>
</html>