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