add sidebar base
This commit is contained in:
parent
625f5b1024
commit
7c838a526a
1 changed files with 24 additions and 0 deletions
24
symposion_project/templates/symposion_sidebar_base.html
Normal file
24
symposion_project/templates/symposion_sidebar_base.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
{% extends "theme_base.html" %}
|
||||
{% load sitetree %}
|
||||
|
||||
{% block body_base %}
|
||||
<div class="container">
|
||||
|
||||
{% include "_messages.html" %}
|
||||
|
||||
{% block breadcrumbs %}
|
||||
{% sitetree_breadcrumbs from "main" %}
|
||||
{% endblock %}
|
||||
|
||||
<div class="row">
|
||||
<div class="span9">
|
||||
{% block body %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
<div class="span3">
|
||||
{% block sidebar %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue