adding lightboxen block to base.html template
authorSeth Woodworth <seth@sethish.com>
Mon, 21 Jan 2013 20:06:37 +0000 (15:06 -0500)
committerSeth Woodworth <seth@sethish.com>
Mon, 21 Jan 2013 20:06:37 +0000 (15:06 -0500)
karmaworld/templates/base.html

index 30a0966ca615863ea394b927bb77014a0657eec3..d56cd100248e0b3c9cbe4000cf99c6bc0ce10d4e 100644 (file)
   <script src="{{ STATIC_URL }}/js/modal-upload.js" ></script>
   <link href="{{ STATIC_URL }}ajaxuploader/css/fileuploader.css" media="screen" rel="stylesheet" type="text/css" />
 
+  <!-- block pagescripts -->
   {% block pagescripts %}
   {% endblock %}
+  <!-- end block pagescripts -->
 
+  <!-- block pagestyle -->
   {% block pagestyle %}
   {% endblock %}
+  <!-- end block pagescripts -->
 
   <script type="text/javascript">
 
        
 </head>
 <body>
-<!-- header include -->
+<!-- include header -->
 {% include 'header.html' %}
-<!-- header end -->
+<!-- end include header -->
 
+<!-- block content -->
 {% block content %}
 {% endblock %}
+<!-- end block content -->
 
+<!-- block lightboxen-->
+{% block lightboxen %}
+{% endblock %}
+<!-- end block lightboxen-->
 
-{# {% include 'lightbox_add_note.html' %} #}
-
-<!-- footer include -->
+<!-- include footer-->
 {% include 'footer.html' %}
-<!-- footer end -->
+<!-- end include footer-->
+
 
 </body>
 </html>