clean the main layout now known as unfold1, including for the 2 pieces (unfold1_main...
[unfold.git] / views / templates / layout-unfold1.html
diff --git a/views/templates/layout-unfold1.html b/views/templates/layout-unfold1.html
new file mode 100644 (file)
index 0000000..1bd75e4
--- /dev/null
@@ -0,0 +1,36 @@
+{# This is required by insert_above #}{% insert_handler %}
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html lang="en"> <head>
+<title> MySlice - {{ title }} </title>
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+{# This is where insert_str will end up #}{% media_container prelude %}
+<script type="text/javascript"> {# raw js code - use {% insert prelude_js %} ... {% endinsert %} #} {% container prelude_js %}</script>
+<style type="text/css">{# In case we need to add raw css code #}{% container prelude_css %}</style>
+{{ header_prelude }}
+</head>{# let's add these ones no matter what #}
+{% insert_str prelude "js/jquery.js" %}
+{% insert_str prelude "js/init-all-plugins.js" %}
+{% insert_str prelude "css/layout-unfold1.css" %}
+<body>
+{% block container %}
+<div id="container">
+  {% block topmenu %}
+  {% include 'widget-topmenu.html' %}
+  {% endblock topmenu %}
+<div class="container-fluid">
+  <div class="row-fluid">
+    <div id="unfold1-main" class="span9 columns">
+      {% block unfold1_main %}
+      "The main content area (define block 'unfold1_main')"
+      {% endblock unfold1_main %}
+    </div><!--span9-->
+    <div id='unfold1-margin' class='span3'>
+      {% block unfold1_margin %}
+      "The related content area (define block 'related_main')"
+      {% endblock unfold1_margin %}
+    </div><!--span3-->
+  </div><!--raw-fluid-->
+</div><!--container-fluid-->
+{% endblock container %}
+</body>
+</html>