Files
superset2/superset/templates/appbuilder/baselayout.html
Maxime Beauchemin 15b67b2c6c [WiP] rename project from Caravel to Superset (#1576)
* Change in files

* Renamin files and folders

* cleaning up a single piece of lint

* Removing boat picture from docs

* add superset word mark

* Update rename note in docs

* Fixing images

* Pinning datatables

* Fixing issues with mapbox-gl

* Forgot to rename one file

* Linting

* v0.13.0

* adding pyyaml to dev-reqs
2016-11-09 23:08:22 -08:00

41 lines
1.0 KiB
HTML

{% extends 'appbuilder/init.html' %}
{% import 'appbuilder/baselib.html' as baselib %}
{% block body %}
{% include 'appbuilder/general/confirm.html' %}
{% include 'appbuilder/general/alert.html' %}
{% block navbar %}
<header class="top" role="header">
{% include 'appbuilder/navbar.html' %}
</header>
{% endblock %}
{% block uncontained %}{% endblock %}
<div class="container">
<div class="row">
{% block messages %}
{% include 'superset/flash_wrapper.html' %}
{% endblock %}
{% block content %}
{% endblock %}
</div>
</div>
<div class="container-fluid">
{% block content_fluid %}
{% endblock %}
</div>
{% block footer %}
<footer>
<div class="img-rounded nav-fixed-bottom">
<div class="container-fluid">
{% include 'appbuilder/footer.html' %}
</div>
</div>
</footer>
{% endblock %}
{% endblock %}