always embed jquery and bootstrap for now
[unfold.git] / myslice / templates / myslice.html
1 {# This is required by insert_above #}
2 {% insert_handler %}
3 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
4 <html> <head>
5 <title> MySlice - slice page with python var foo = {{ foo|default:"foo is undefined"}} </title>
6 {# This is where insert_str will end up #}
7 {% media_container prelude %}
8 {% insert_str prelude "jquery/jquery.js" %}
9 {% insert_str prelude "bootstrap/css/bootstrap.css" %}
10 <script type="text/javascript">
11 {# In case we need to add raw js code #}
12 {% container raw_js %}
13 </script>
14 <style type="text/css">
15 {# In case we need to add raw css code #}
16 {% container raw_css %}
17 </style>
18 </head>
19
20 {# let's add this one no matter what #}
21 {% insert_str prelude "css/myslice.css" %}
22 {% insert_str prelude "css/miscell.css" %}
23
24 <body>
25
26 {% block container %}
27 <div id='container'>
28
29     <div id='header'>
30     {% block header %}
31       {% include 'mymenu.html' %}
32     {% endblock header %}
33     </div>
34
35     {% block column_wrap %}
36     <div id='column-wrap'>
37     <div id='content-main'>
38       {% block content_main %}
39       "The main content area (set block 'content_main')"
40       {% endblock content_main %}
41     </div>
42
43     <div id='content-related'>
44       {% block content_related %}
45       "The related content area (set block 'related_main')"
46       {% endblock content_related %}
47     </div>
48     </div>
49     {% endblock column_wrap %}
50
51 </div>
52 {% endblock container %}
53
54 </body>
55 </html>