b107b552682d1dd2257943d34c9475265ca5d890
[myslice.git] / views / templates / layout-unfold2.html
1 {# This is required by insert_above #}{% insert_handler %}<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html lang="en"> <head>
3 <title> MySlice - {{ title }} </title>
4 <meta name="viewport" content="width=device-width, initial-scale=1.0">
5 {# This is where insert_str will end up #}{% media_container prelude %}
6 <script type="text/javascript"> {# raw js code - use {% insert prelude_js %} ... {% endinsert %} #} {% container prelude_js %}</script>
7 <style type="text/css">{# In case we need to add raw css code #}{% container prelude_css %}</style>
8 {{ header_prelude }}
9 </head>{# let's add these ones no matter what #}
10 {% insert_str prelude "css/layout-unfold2.css" %}
11 {% insert_str prelude "js/jquery.min.js" %}
12 {% insert_str prelude "js/jquery.html5storage.min.js" %}
13 {% insert_str prelude "js/messages-runtime.js" %}
14 {% insert_str prelude "js/plugin.js" %}
15 <body>
16 {% block container %}
17 <div id="container">
18   {% block topmenu %}
19   {% include 'widget-topmenu.html' %}
20   {% endblock topmenu %}
21 <div class="container-fluid">
22   <div class="row-fluid">
23     <div id="unfold2-main" class="span9 columns">
24       {% block unfold2_main %}
25       "The main content area (define block 'unfold2_main')"
26       {% endblock unfold2_main %}
27     </div><!--span9-->
28     <div id='unfold2-margin' class='span3'>
29       {% block unfold2_margin %}
30       "The related content area (define block 'related_main')"
31       {% endblock unfold2_margin %}
32     </div><!--span3-->
33   </div><!--raw-fluid-->
34 </div><!--container-fluid-->
35 {% endblock container %}
36 </body>
37 </html>