summaryrefslogtreecommitdiff
path: root/templates/two_col.tmpl
blob: 3ba51b0756648186ac799de1ef05b94e85a11521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#extends templates.base

#def css
<!-- CSS from previous template, not sure what to keep yet -->
<!--<link rel="stylesheet" href="$basehref/static/theme/style-plinth-2col.css" />-->
#end def

#def add_sidebar_left
        <div class="span3">
          <div class="well sidebar-nav">
		#block nav_block
		$nav
		#end block nav_block
		#block sidebar_left_block
		$sidebar_left
		#end block sidebar_left_block
          </div><!--/.well -->
          <div class="well sidebar-nav">
		#block sidebar_right_block
		$sidebar_right
		#end block sidebar_right_block
          </div><!--/.well -->
        </div><!--/span-->
#end def