remove gevent monkey-patch from feed-downloader
[mygpo.git] / mygpo / web / templates / embed.html
blobaa59d488ada304e7a89665c02dffb34878d5ebc1
1 {% load i18n %}
2 {% load menu %}
4 <!DOCTYPE html>
5 <html lang="en">
6 <head>
7 <meta charset="utf-8">
8 <title>{% block title %}{% endblock %} (gpodder.net)</title>
9 <meta name="viewport" content="width=device-width, initial-scale=1.0">
10 <meta name="description" content="">
11 <meta name="author" content="">
13 <!-- Le styles -->
14 <link href="/media/css/bootstrap.css" rel="stylesheet">
15 <style type="text/css">
16 body {
17 padding-top: 60px;
18 padding-bottom: 40px;
20 .sidebar-nav {
21 padding: 9px 0;
23 </style>
24 <link href="/media/css/bootstrap-responsive.css" rel="stylesheet">
25 <link href="/media/css/font-awesome.css" rel="stylesheet">
26 <link rel="stylesheet" href="/media/screen.css" type="text/css" />
28 <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
29 <!--[if lt IE 9]>
30 <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
31 <![endif]-->
33 <!-- Le fav and touch icons -->
34 <link rel="shortcut icon" href="/favicon.png">
36 {% block head %}{% endblock %}
38 {% if google_analytics_property_id %}
39 {% load googleanalytics %}
40 {{ google_analytics_property_id|google_analytics_async }}
41 {% endif %}
43 </head>
45 <body>
47 <div class="container-fluid">
48 <div class="row-fluid">
49 <div class="span12">
51 {% if messages %}
52 {% for message in messages %}
53 <div {% if message.tags %} class="{{ message.tags }}"{% endif %}>
54 {{ message }}
55 </div>
56 {% endfor %}
57 {% endif %}
60 {% block content %}
61 {% endblock %}
63 </div>
64 </div>
67 </div><!--/.fluid-container-->
69 <!-- Le javascript
70 ================================================== -->
71 <!-- Placed at the end of the document so the pages load faster -->
72 <script src="/media/js/jquery.js"></script>
73 {% block javascript %}{% endblock javascript %}
75 </body>
76 </html>