diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/templates/base.html b/templates/base.html index bca30f0..1916f7d 100644 --- a/templates/base.html +++ b/templates/base.html @@ -7,7 +7,7 @@ <title>{% block title %}THE TITLE{% endblock %}</title>
<script src="{{ settings.MEDIA_URL }}js/base.js" type="text/javascript"></script>
-{% block javascript %}{% endblock %}
+{% block head %}{% endblock %}
</head>
<body>
@@ -29,17 +29,22 @@ </div>
</div>
</a>
-<div id="nav" style="float:left; top:200; background:#999; width:200; height:100%"> {% block nav %}
-
- {% endblock %} </div>
-<div id="content">
+ {% block nav %}
+ <!-- Use id="nav" for the left side menu -->
+ {% endblock %}
+
+
+
+<div id="content" >
{% block content %}
REPLACE : The content
{% endblock %}
+
</div>
+
<div id="footer">
{% block footer %}
THE FOOTER
|