Merge branch 'master' of github.com:FinalsClub/karmaworld
[oweals/karmaworld.git] / karmaworld / templates / base.html
1 {% load url from future %}
2 <!DOCTYPE html>
3 <html lang="en">
4 <head>
5   <meta charset="utf-8" />
6   <title>KarmaNotes -- {% block title %}{% endblock %}</title>
7         
8   <link rel="stylesheet" type="text/css" media="all" href="/static/css/fontface/fontface.css">
9   <link rel="stylesheet" type="text/css" media="all" href="/static/css/foundation.min.css">
10   <link rel="stylesheet" type="text/css" media="all" href="/static/css/global.css">
11         <link rel="stylesheet" type="text/css" media="all" href="/static/css/lightbox.css">
12         <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
13
14   <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
15   <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
16   <script src="/static/js/bootstrap-dropdown.js"></script>
17   <script src="/static/js/app.js"></script>
18
19   <script src="{{ STATIC_URL }}ajaxuploader/js/fileuploader.js" ></script>
20   <script src="{{ STATIC_URL }}/js/modal-upload.js" ></script>
21   <link href="{{ STATIC_URL }}ajaxuploader/css/fileuploader.css" media="screen" rel="stylesheet" type="text/css" />
22
23   <!-- block pagescripts -->
24   {% block pagescripts %}
25   {% endblock %}
26   <!-- end block pagescripts -->
27
28   <!-- block pagestyle -->
29   {% block pagestyle %}
30   {% endblock %}
31   <!-- end block pagescripts -->
32
33   <script type="text/javascript">
34
35     var _gaq = _gaq || [];
36     _gaq.push(['_setAccount', 'UA-36897868-1']);
37     _gaq.push(['_setDomainName', 'karmanotes.org']);
38     _gaq.push(['_trackPageview']);
39
40     (function() {
41       var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
42       ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
43       var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
44     })();
45
46   </script>
47
48         
49 </head>
50 <body>
51 <!-- include header -->
52 {% include 'header.html' %}
53 <!-- end include header -->
54
55 <!-- block content -->
56 {% block content %}
57 {% endblock %}
58 <!-- end block content -->
59
60 <!-- block lightboxen-->
61 {% block lightboxen %}
62 {% endblock %}
63 <!-- end block lightboxen-->
64
65 <!-- include footer-->
66 {% include 'footer.html' %}
67 <!-- end include footer-->
68
69
70 </body>
71 </html>