diff options
| author | Jocelyn Delalande <jocelyn@crapouillou.net> | 2017-02-01 20:22:25 +0100 |
|---|---|---|
| committer | Jocelyn Delalande <jocelyn@crapouillou.net> | 2017-02-04 00:41:20 +0100 |
| commit | a3cbede680f9623c7ab4071df9abf143dec64065 (patch) | |
| tree | f3286c066271492914372f25169656e72dda5244 /budget/templates/sidebar_table_layout.html | |
| parent | 286213026982435e6e87cdbbd5dddcd80e925b91 (diff) | |
| download | ihatemoney-mirror-a3cbede680f9623c7ab4071df9abf143dec64065.zip ihatemoney-mirror-a3cbede680f9623c7ab4071df9abf143dec64065.tar.gz ihatemoney-mirror-a3cbede680f9623c7ab4071df9abf143dec64065.tar.bz2 | |
Refactor layout based on bootstrap 4 grid
Diffstat (limited to 'budget/templates/sidebar_table_layout.html')
| -rw-r--r-- | budget/templates/sidebar_table_layout.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/budget/templates/sidebar_table_layout.html b/budget/templates/sidebar_table_layout.html new file mode 100644 index 0000000..7c831f4 --- /dev/null +++ b/budget/templates/sidebar_table_layout.html @@ -0,0 +1,14 @@ +{% extends "layout.html" %} + +{% block body %} +<div class="row" style="height: 100%"> +<aside id="sidebar" class="sidebar col-3 " style="height: 100%"> + {% block sidebar %}{% endblock %} +</aside> + +<main class="offset-md-3 col-9"> + {% block content %}{% endblock %} +</main> + +</div> +{% endblock %} |
