|
|
{% 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-->
|
|
|
|
|
|
<footer class="app-footer">
|
|
|
<div class="container text-center py-3">
|
|
|
<!--/* This template is free as long as you keep the footer attribution link. If you'd like to use the template without the attribution link, you can buy the commercial license via our website: themes.3rdwavemedia.com Thank you for your support. :) */-->
|
|
|
<small class="copyright">Designed with <span class="sr-only">love</span><i class="fas fa-heart" style="color: #fb866a;"></i> by <a class="app-link" href="http://themes.3rdwavemedia.com" target="_blank">Xiaoying Riley</a> for developers</small>
|
|
|
|
|
|
</div>
|
|
|
</footer><!--//app-footer-->
|
|
|
|
|
|
</div><!--//app-wrapper-->
|
|
|
|
|
|
<!-- Javascript -->
|
|
|
<script src="{{ url_for('static', filename='plugins/popper.min.js') }}"></script>
|
|
|
<script src="{{ url_for('static', filename='plugins/bootstrap/js/bootstrap.min.js') }}"></script>
|
|
|
|
|
|
<!-- Charts JS -->
|
|
|
<script src="{{ url_for('static', filename='plugins/chart.js/chart.min.js') }}"></script>
|
|
|
<script src="{{ url_for('static', filename='plugins/js/index-charts.js') }}"></script>
|
|
|
|
|
|
<!-- La línea siguiente es para la demo de los charts en charts.html -->
|
|
|
<script src="{{ url_for('static', filename='js/charts-demo.js') }}"></script>
|
|
|
|
|
|
|
|
|
<!-- Page Specific JS -->
|
|
|
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
|
|
|
|
|
|
</body>
|
|
|
</html>
|
|
|
|