more changes to footer for foundation 4 migration
[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" type="text/css" media="all" href="{{ STATIC_URL }}css/media.css">
14   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/lightbox.css">
15   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}ajaxuploader/css/fileuploader.css">
16   <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
17   <!-- include Font Awesome -->
18   <link href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet">
19
20   <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
21   <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
22   <script src="{{ STATIC_URL }}ajaxuploader/js/fileuploader.js" ></script>
23
24   <!-- block pagescripts -->
25   {% block pagescripts %}
26   {% endblock %}
27   <!-- end block pagescripts -->
28
29   <!-- block pagestyle -->
30   {% block pagestyle %}
31   {% endblock %}
32   <!-- end block pagescripts -->
33
34   <script type="text/javascript">
35
36     var _gaq = _gaq || [];
37     _gaq.push(['_setAccount', 'UA-36897868-1']);
38     _gaq.push(['_setDomainName', 'karmanotes.org']);
39     _gaq.push(['_trackPageview']);
40
41     (function() {
42       var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
43       ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
44       var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
45     })();
46
47   </script>
48
49         
50 </head>
51 <body>
52 <!-- include header -->
53 {% include 'header.html' %}
54 <!-- end include header -->
55
56 <!-- block content -->
57 {% block content %}
58 {% endblock %}
59 <!-- end block content -->
60
61 <!-- block lightboxen-->
62 {% block lightboxen %}
63 {% endblock %}
64 <!-- end block lightboxen-->
65
66 <!-- include footer-->
67 {% include 'footer.html' %}
68 <!-- end include footer-->
69
70
71 </body>
72 </html>