Merge pull request #793 from gpodder/remove-advertise
[mygpo.git] / mygpo / web / templates / skeleton.html
blobd5f0e32c26696ba8d4205c10d56adbdab6cd69f9
1 {% load i18n %}
2 {% load menu %}
3 {% load static %}
4 {% load utils %}
6 <!DOCTYPE html>
7 <html lang="en">
8 <head>
9 <meta charset="utf-8">
10 <title>
11 {% block titletag %}
12 {% block title %}{% endblock %} &mdash; gpodder.net
13 {% endblock %}
14 </title>
15 <meta name="viewport" content="width=device-width, initial-scale=1.0">
16 <meta name="description" content="">
17 <meta name="author" content="">
19 <!-- Le styles -->
20 <link href="{% static "css/bootstrap.css" %}" rel="stylesheet">
21 <style type="text/css">
22 body {
23 padding-top: 60px;
24 padding-bottom: 40px;
26 .sidebar-nav {
27 padding: 9px 0;
29 </style>
30 <link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900" rel="stylesheet" type="text/css">
31 <link href="{% static "css/bootstrap-responsive.css" %}" rel="stylesheet">
32 <link href="{% static "css/font-awesome.css" %}" rel="stylesheet">
33 <link rel="stylesheet" href="{% static "screen.css" %}" type="text/css" />
35 <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
36 <!--[if lt IE 9]>
37 <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
38 <![endif]-->
40 <!-- Le fav and touch icons -->
41 <link rel="shortcut icon" href="/favicon.png">
43 {% block head %}{% endblock %}
45 {% if google_analytics_property_id %}
46 {% load googleanalytics %}
47 {{ google_analytics_property_id|google_analytics_async }}
48 {% endif %}
50 </head>
52 <body>
54 {% block body %}
57 {% endblock %}
59 </body>
61 </html>