Merge branch 'master' into redesign
[oweals/karmaworld.git] / karmaworld / templates / base.html
1 {% load url from future %}
2 <!DOCTYPE html>
3 <html lang="en" dir="ltr">
4 <head>
5   <meta charset="utf-8" />
6   <meta name="viewport" content="width=device-width" />
7   <title>KarmaNotes -- {% block title %}{% endblock %}</title>
8         
9   <link rel="shortcut icon" href="{{ STATIC_URL }}img/favicon.ico">
10   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/fontface/fontface.css">
11   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}vendor/foundation-4.2.3/css/foundation.css">
12   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/global.css">
13   <link rel="stylesheet" href="//code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
14   <link rel="stylesheet" href="{{ STATIC_URL }}css/vendor/opentip.css"> <!-- opentip -->
15   <!-- include Font Awesome -->
16   <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
17
18   <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
19   <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
20
21
22   <!-- block pagescripts -->
23   {% block pagescripts %}
24   {% endblock %}
25   <!-- end block pagescripts -->
26
27   <!-- block pagestyle -->
28   {% block pagestyle %}
29   {% endblock %}
30   <!-- end block pagescripts -->
31
32   {% include 'partial/trackers.html' %}
33
34         
35 </head>
36 <body>
37
38 <!-- include header -->
39 {% include 'header.html' %}
40 <!-- end include header -->
41
42 <!-- block content -->
43 {% block content %}
44 {% endblock %}
45 <!-- end block content -->
46
47 <!-- include footer-->
48 {% include 'footer.html' %}
49 <!-- end include footer-->
50
51 <!-- block bodyscripts -->
52 {% block bodyscripts %}
53 {% endblock %}
54 <!-- end block bodyscripts -->
55 <script src="{{ STATIC_URL }}js/opentip-jquery-excanvas.min.js"></script>
56
57 </body>
58 </html>