]> git.0d.be Git - chloro.git/blob - chloro/rdio/templates/phyll/base.html
use panikdb in title, not rdio.space
[chloro.git] / chloro / rdio / templates / phyll / base.html
1 {% load gadjo i18n %}<!DOCTYPE html>
2 <html lang="{% block html-lang %}fr{% endblock %}">
3   <head>
4     <meta charset="utf-8"/> <!-- 📻 -->
5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
6     <title>{% block page-title %}rdio.space - panikdb - gestion radio{% endblock %}</title>
7     <link rel="stylesheet" type="text/css" href="/static/css/style.css">
8     <link rel="shortcut icon" href="/static/icon.png">
9     <link rel="manifest" href="/static/manifest.json">
10     {% if request.user.is_staff %}
11     <script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
12     <script src="/static/js/chloro.js"></script>
13     {% endif %}
14     {% block bottom-head %}
15     {% endblock %}
16   </head>
17   <body>
18     <header>
19       <span><a href="/">PanikDB - gestion radio</a></span>
20     </header>
21     <main class="{% block content-class %}{% endblock %}">
22       <div id="search">
23         <input type="checkbox" id="search-enable">
24         <label for="search-enable"></label>
25         <form class="search-field">
26           <input name="q" type="search">
27         </form>
28         <ul class="search-results">
29         </ul>
30       </div>
31       {% block body %}
32       {% endblock %}
33     </main>
34     <footer>
35       <p>Contact : <a href="mailto:fred@rdio.space">fred@rdio.space</a></p>
36       {% if request.user.is_staff %}
37       <p class="actions">
38         <a href="/new-note/">{% trans "New Page" %}</a>
39         {% block bottom-actions %}
40         {% endblock %}
41       </p>
42       {% endif %}
43     </footer>
44   </body>
45 </html>