use django.contrib.staticfiles
[mygpo.git] / mygpo / web / templates / embed.html
blob034852ce78d4a13573865cd561a9733d9f96c3c6
1 {% load i18n %}
2 {% load menu %}
3 {% load static %}
5 <!DOCTYPE html>
6 <html lang="en">
7 <head>
8 <meta charset="utf-8">
9 <title>{% block title %}{% endblock %} (gpodder.net)</title>
10 <meta name="viewport" content="width=device-width, initial-scale=1.0">
11 <meta name="description" content="">
12 <meta name="author" content="">
14 <!-- Le styles -->
15 <link href="{% static "css/bootstrap.css" %}" rel="stylesheet">
16 <style type="text/css">
17 body {
18 padding-top: 60px;
19 padding-bottom: 40px;
21 .sidebar-nav {
22 padding: 9px 0;
24 </style>
25 <link href="{% static "css/bootstrap-responsive.css" %}" rel="stylesheet">
26 <link href="{% static "css/font-awesome.css" %}" rel="stylesheet">
27 <link rel="stylesheet" href="{% static "screen.css" %}" type="text/css" />
29 <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
30 <!--[if lt IE 9]>
31 <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
32 <![endif]-->
34 <!-- Le fav and touch icons -->
35 <link rel="shortcut icon" href="/favicon.png">
37 {% block head %}{% endblock %}
39 {% if google_analytics_property_id %}
40 {% load googleanalytics %}
41 {{ google_analytics_property_id|google_analytics_async }}
42 {% endif %}
44 </head>
46 <body>
48 <div class="container-fluid">
49 <div class="row-fluid">
50 <div class="span12">
52 {% if messages %}
53 {% for message in messages %}
54 <div {% if message.tags %} class="{{ message.tags }}"{% endif %}>
55 {{ message }}
56 </div>
57 {% endfor %}
58 {% endif %}
61 {% block content %}
62 {% endblock %}
64 </div>
65 </div>
68 </div><!--/.fluid-container-->
70 <!-- Le javascript
71 ================================================== -->
72 <!-- Placed at the end of the document so the pages load faster -->
73 <script src="{% static "js/jquery.js" %}"></script>
74 {% block javascript %}{% endblock javascript %}
76 </body>
77 </html>