Move to html2text
[oweals/karmaworld.git] / karmaworld / templates / base.html
index b3fcf3086c1787ca7fd0062b80473c7b21be7ec4..79451fdf467465854ff5b6588d2d5ec1b130cbbd 100644 (file)
@@ -1,20 +1,24 @@
 {% load url from future %}
 <!DOCTYPE html>
-<html lang="en">
+<html lang="en" dir="ltr">
 <head>
   <meta charset="utf-8" />
+  <meta name="viewport" content="width=device-width" />
   <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" 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" />
+  <link rel="shortcut icon" href="{{ STATIC_URL }}img/favicon.ico">
+  <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 }}vendor/foundation-4.2.3/css/foundation.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/media.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">
+  <!-- include Font Awesome -->
+  <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
 
   <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_URL }}ajaxuploader/js/fileuploader.js" ></script>
+  <script src="{{ STATIC_URL }}js/jquery-scrollto.js" ></script>
 
   <!-- block pagescripts -->
   {% block pagescripts %}
@@ -44,6 +48,7 @@
        
 </head>
 <body>
+
 <!-- include header -->
 {% include 'header.html' %}
 <!-- end include header -->
 {% include 'footer.html' %}
 <!-- end include footer-->
 
+{% block opentip %}
+<!-- Conditionally include opentip -->
+{% endblock opentip %}
+
+<!-- block bodyscripts -->
+{% block bodyscripts %}
+{% endblock %}
+<!-- end block bodyscripts -->
 
 </body>
 </html>