db0d39f5130cc1526a698e09c7ab28084d655cef
[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 {% insert_str prelude "css/layout-unfold2.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/mustache.js" %}
19 {% insert_str prelude "js/plugin.js" %}
20 {% insert_str prelude "js/manifold.js" %}
21 {% insert_str prelude "css/manifold.css" %}
22 <body>
23 {% block container %}
24 <div id="container">
25   {% block topmenu %}
26   {% include 'widget-topmenu.html' %}
27   {% endblock topmenu %}
28 {% include 'messages.html' %}
29 <div class="container-fluid">
30   <div class="row-fluid">
31
32    {% block base_content%}{% endblock %}
33
34   </div><!--raw-fluid-->
35 </div><!--container-fluid-->
36 {% endblock container %}
37 </body>
38 </html>