ojuso-map/ojusomap/templates/base_with_jumbo.html
2017-11-18 16:55:02 +00:00

29 lines
408 B
HTML

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