ojuso-map/ojusomap/templates/base_with_jumbo.html

29 lines
408 B
HTML
Raw Permalink Normal View History

{% extends "base.html" %}
{% block stylesheets %}
{{ block.super }}
<style>
.jumbo {
2017-11-18 16:54:44 +00:00
height: calc(100% - 52px);
width: 100%;
position: relative;
right: 0;
bottom: 0;
2017-11-18 16:54:44 +00:00
left: 0;
}
.navbar {
margin-bottom:0;
}
</style>
{% endblock %}
2017-11-18 16:54:44 +00:00
{% block content %}
<div class="jumbo">
2017-11-18 16:54:44 +00:00
{% block inner_content %}
{% endblock %}
</div><!-- /.container -->
{% endblock %}