aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/sidebar_table_layout.html
blob: 239acb3bdcba87867aa8a6293e1dced9f092f9ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "layout.html" %}

{% block body %}
<div class="row" style="height: 100%">
<aside id="sidebar" class="sidebar col-xs-12 col-md-3 " style="height: 100%">
  {% block sidebar %}{% endblock %}
</aside>

<main class="offset-md-3 col-xs-12 col-md-9">
  {% block content %}{% endblock %}
</main>

</div>
{% endblock %}