Merge branch 'master' of github.com:FinalsClub/karmaworld
[oweals/karmaworld.git] / karmaworld / templates / base.html
index 30a0966ca615863ea394b927bb77014a0657eec3..b3c31dc0af9885bf1ba0e1dc0fff17d61fc7ea6f 100644 (file)
@@ -5,26 +5,26 @@
   <meta charset="utf-8" />
   <title>KarmaNotes -- {% block title %}{% endblock %}</title>
        
-  <link rel="stylesheet" type="text/css" media="all" href="/static/css/fontface/fontface.css">
-  <link rel="stylesheet" type="text/css" media="all" href="/static/css/foundation.min.css">
-  <link rel="stylesheet" type="text/css" media="all" href="/static/css/global.css">
-       <link rel="stylesheet" type="text/css" media="all" href="/static/css/lightbox.css">
+  <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/fontface/fontface.css">
+  <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/foundation.min.css">
+  <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/global.css">
+       <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/lightbox.css">
        <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
+  <link href="{{ STATIC_URL }}ajaxuploader/css/fileuploader.css" media="screen" rel="stylesheet" type="text/css" />
 
   <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
   <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
-  <script src="/static/js/bootstrap-dropdown.js"></script>
-  <script src="/static/js/app.js"></script>
-
   <script src="{{ STATIC_URL }}ajaxuploader/js/fileuploader.js" ></script>
-  <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>