{% load static %}
|
|
|
|
{% include "_head.html" %}
|
|
|
|
<body class="app">
|
|
{% include "_cabecera.html" %}
|
|
|
|
<div class="app-wrapper">
|
|
|
|
<div class="app-content pt-3 p-md-3 p-lg-4">
|
|
{% block content %}{% endblock %}
|
|
</div><!--//app-content-->
|
|
|
|
{% include "_footer.html" %}
|
|
|
|
</div><!--//app-wrapper-->
|
|
</body>
|
|
</html>
|
|
|