109c495c33ac1ef86cf512f10bd50c50f5d2785a
[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 %}{% block head_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 }}css/foundation.min.css">
12   <link rel="stylesheet" type="text/css" media="all" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
13   <link rel="stylesheet" href="{{ STATIC_URL }}css/vendor/opentip.css">
14   <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
15   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/global.css">
16
17   <script src="//code.jquery.com/jquery-2.1.0.min.js"></script>
18
19   <!-- block pagescripts -->
20   {% block pagescripts %}
21   {% endblock %}
22   <!-- end block pagescripts -->
23
24   <!-- block pagestyle -->
25   {% block pagestyle %}
26   {% endblock %}
27   <!-- end block pagescripts -->
28
29   {% include 'partial/trackers.html' %}
30
31         
32 </head>
33 <body>
34
35   <!-- include header -->
36   {% include 'header.html' %}
37   <!-- end include header -->
38
39   <!-- block content -->
40   {% block raw_content %}
41   {% endblock %}
42   <!-- end block content -->
43
44   <!-- include footer-->
45   {% include 'footer.html' %}
46   <!-- end include footer-->
47
48   <script src="//code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
49   <script type="text/javascript" src="//use.typekit.net/pnc8diw.js"></script>
50   <script type="text/javascript">try{Typekit.load();}catch(e){}</script>
51   <script src="{{ STATIC_URL }}js/opentip-jquery-excanvas.min.js"></script>
52   <script src="{{ STATIC_URL }}js/foundation.min.js"></script>
53   <script>
54     $(function() {
55       $(document).foundation();
56     });
57   </script>
58   <!-- block bodyscripts -->
59   {% block bodyscripts %}
60   {% endblock %}
61   <!-- end block bodyscripts -->
62
63 </body>
64 </html>