1 {# This is required by insert_above #}
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 %}
13 <style type="text/css">
14 {# In case we need to add raw css code #}
15 {% container prelude_css %}
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" %}
32 {% include 'widget-topmenu.html' %}
33 {% endblock topmenu %}
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 %}
43 <div id='content-related' class='span3'>
44 {% block content_related %}
45 "The related content area (define block 'related_main')"
46 {% endblock content_related %}
48 </div><!--raw-fluid-->
49 </div><!--container-fluid-->
50 {% endblock container %}