c297ea5f1984a507e4a2e6686360f1cabb30fb2b
[myslice.git] / views / templates / base.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 {% include 'messages-header.html' %}
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 {% block head %} {% endblock head %}
11 </head>{# let's add these ones no matter what #}
12 {# not yet needed {% insert_str prelude "css/layout-unfold1.css" %} #}
13 {% insert_str prelude "js/jquery.min.js" %}
14 {% insert_str prelude "js/jquery.html5storage.min.js" %}
15 {% insert_str prelude "js/messages-runtime.js" %}
16 {% insert_str prelude "js/class.js" %}
17 {% insert_str prelude "js/plugin_helper.js" %}
18 {% insert_str prelude "js/plugin.js" %}
19 {% insert_str prelude "js/manifold.js" %}
20 <body>
21 {% block container %}
22 <div id="container">
23   {% block topmenu %}
24   {% include 'widget-topmenu.html' %}
25   {% endblock topmenu %}
26 {% include 'messages.html' %}
27 <div class="container-fluid">
28   <div class="row-fluid">
29
30    {% block base_content%}{% endblock %}
31
32   </div><!--raw-fluid-->
33 </div><!--container-fluid-->
34 {% endblock container %}
35 </body>
36 </html>