new object pluginset
[myslice.git] / templates / layout-myslice.html
1 {# This is required by insert_above #}{% insert_handler %}
2 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
3 <html lang="en"> <head>
4 <title> MySlice - {{ title }} </title>
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 {# This is where insert_str will end up #}{% media_container prelude %}
7 <script type="text/javascript"> {# raw js code - use {% insert prelude_js %} ... {% endinsert %} #} {% container prelude_js %}</script>
8 <style type="text/css">{# In case we need to add raw css code #}{% container prelude_css %}</style>
9 {{ header_prelude }}
10 </head>{# let's add these ones no matter what #}
11 {% insert_str prelude "jquery/js/jquery.js" %}
12 {# {% insert prelude_js %} jQuery.noConflict(); {% endinsert %} #}
13 {% insert_str prelude "js/plugin-init.js" %}
14 {% insert_str prelude "css/myslice.css" %}
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="content-main" class="span9 columns">
24       {% block content_main %}
25       "The main content area (define block 'content_main')"
26       {% endblock content_main %}
27     </div><!--span9-->
28     <div id='content-related' class='span3'>
29       {% block content_related %}
30       "The related content area (define block 'related_main')"
31       {% endblock content_related %}
32     </div><!--span3-->
33   </div><!--raw-fluid-->
34 </div><!--container-fluid-->
35 {% endblock container %}
36 </body>
37 </html>