]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/base.html
03b8efeaba3e85def2cc5358dfc4414ec35a2a16
[panikweb.git] / panikweb_templates / templates / base.html
1 {% load paniktags staticfiles compress %}<!DOCTYPE html>
2 <html>
3 <head>
4     <meta charset="UTF-8" />
5     <title>Radio Esperanzah! - {% block title %}{% endblock %}</title>
6         <meta name="viewport" content="width=device-width, initial-scale=1.0">
7     <link rel="icon" href="{{ STATIC_URL }}img/favicon-rose.png" type="image/png">
8     <link rel="apple-touch-icon" href="{{ STATIC_URL}}img/touch-icon.png">
9     <link rel="apple-touch-icon-precomposed" href="{{ STATIC_URL}}img/touch-icon.png">
10     <link rel="canonical" href="{{ request.build_absolute_uri }}" />
11
12     <meta name="og:site_name" content="Radio Esperanzah!"/>
13     {% block head %}
14     <meta property="og:title" content="Radio Esperanzah! - 106.2 FM" />
15     <meta property="og:image" content="{{ site_url }}{% static 'img/logo-esperanzah.png' %}" />
16     {% endblock %}
17
18 <link rel="alternate" type="application/rss+xml"  href="{% url 'rss-feed' %}" title="News rss feed">
19 <link rel="alternate" type="application/rss+xml"  href="{% url 'atom-feed' %}" title="News atom feed">
20 <link rel="alternate" type="application/rss+xml"  href="{% url 'podcasts-feed' %}" title="Podcast sounds">
21
22     <link rel="stylesheet" href="{{ STATIC_URL }}css/style.css" type="text/css" />
23
24     {% compress js %}
25     <script type="text/javascript" src="{{ STATIC_URL }}js/jquery-1.10.2.min.js"></script>
26     <script type="text/javascript" src="{{ STATIC_URL }}js/jquery-ui-1.10.4.custom.min.js"></script>
27     <script type="text/javascript" src="{{ STATIC_URL }}js/audioPlayer.js"></script>
28     <script type="text/javascript" src="{{ STATIC_URL }}js/specifics.js"></script>
29     {% endcompress %}
30
31     {% block extrascripts %}{% endblock %}
32 </head>
33
34 <body {% block bodyattr %}id="{{sectionName}}" class="section-{{sectionName}}"{% endblock %}>
35         <div id="All">
36                 <div id="Commons" >
37             <div class="sided" >
38                 <div id="backgroundBox">
39                                 <a href="{% url 'home' %}" id="mainHeader"><div>
40                                         <h1 class="top" id="radiopanik">Radio Esperanzah! - 106.2 FM</h1>
41                                 </div></a>
42                                 <div id="Player" class="withoutPlaylist">
43                                         {% block listen %}{% player %}{% endblock %}
44                                 </div>
45                         </div>
46                     </div>
47                     <a id="facebook" href="https://www.facebook.com/RadioEsperanzah"></a>
48                     <a id="twitter" href="https://twitter.com/radioesperanzah"></a>
49                 </div>
50                 <div id="Changing" data-section="{{ sectionName }}">
51                         {% block toptitle %}{% endblock %}
52                         <div id="Nav">
53                                 {% block nav %}{% endblock %}
54                         </div>
55                         <div id="Main">
56                                 {% block main %}{% endblock %}
57                         </div>
58                         <div id="Related">
59                                 {% block related %}{% endblock %}
60                         </div>
61                 <div id="Footer">
62                         <p>
63                         Radio Esperanzah!, avec les énergies de
64                         <a href="http://www.48fm.be">48FM</a>,
65                         <a href="http://www.radiocampus.be">Radio Campus</a>,
66                         <a href="http://www.radiopanik.org">Radio Panik</a>,
67                         <a href="http://www.run.be">RUN</a>,
68                         du <a href="http://www.esperanzah.be">festival</a>
69                         et des festivaliers.
70                         </p>
71                         <p>
72                         <a href="mailto:radio@esperanzah.be">Contact</a>
73                         </p>
74                 </div>
75                 </div>
76                 <div id="userLog"></div>
77         </div>
78 {% piwik %}
79
80 </body>
81 </html>