diff options
Diffstat (limited to 'ihatemoney/templates/sidebar_table_layout.html')
| -rw-r--r-- | ihatemoney/templates/sidebar_table_layout.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ihatemoney/templates/sidebar_table_layout.html b/ihatemoney/templates/sidebar_table_layout.html new file mode 100644 index 0000000..239acb3 --- /dev/null +++ b/ihatemoney/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-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 %} |
