renamed
[myslice.git] / myslice / templates / myslice-base.html
similarity index 60%
rename from slice/templates/foo-base.html
rename to myslice/templates/myslice-base.html
index 97f36ea..26dda51 100644 (file)
@@ -2,7 +2,7 @@
 {% insert_handler %}
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html> <head>
-<title> Foo - an experimental slice page with foo= {{ foo }} </title>
+<title> MySlice - slice page with python var foo = {{ foo }} </title>
 {# This is where insert_str will end up #}
 {% media_container prelude %}
 <script>
 </style>
 </head>
 
+{# let's add this one no matter what #}
+{% insert_str prelude "css/miscell.css" %}
+
 <body>
 {% block menu %} <div class='menu'> {{ menu }} </div> {% endblock %}
-{% block float %} <div class='float'>
-  <img class="logo" src="{{ STATIC_URL }}img/myslice-logo.png" alt="MySlice" />
-  {{ float|default:"The float area" }} </div> {% endblock %}
+
+{% block left %}
+<div class='left'>
+  {{ left|default:"The left area" }}
+</div>
+{% endblock %}
+
 {% block main %}
-<div class='main'>  <h1>Again, foo = {{ foo }} </h1> {{ main }} </div>
+<div class='main'>  <h1>Again, python var foo = {{ foo }} </h1>
+  {{ main }}
+</div>
 <hr>
 {% block content %} and more stuff if needed {% endblock %}
 {% endblock %}
+
 </body>
 </html>