{% 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 %}