]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/base.html
54a1f4a3b6d69003201111f114c9ef19f6ebe046
[chloro.git] / chloro / phyll / templates / phyll / base.html
1 {% load i18n %}<!DOCTYPE html>
2 <html>
3   <head>
4     <meta charset="utf-8"/> <!-- đŸŒ± -->
5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
6     <title>{% block page-title %}Coin web de FrĂ©dĂ©ric PĂ©ters{% endblock %}</title>
7     <link rel="stylesheet" type="text/css" href="/static/css/style.css">
8     <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed/atom" />
9     {% block bottom-head %}
10     {% endblock %}
11   </head>
12   <body>
13     <header>
14       <h1><a href="/">Coin web de FrĂ©dĂ©ric PĂ©ters</a></h1>
15     </header>
16     <main class="{% block content-class %}{% endblock %}">
17       {% block body %}
18       {% endblock %}
19     </main>
20     <footer>
21       <p>Contact : <a href="mailto:fpeters@0d.be">fpeters@0d.be</a></p>
22     </footer>
23   {% if request.user.is_staff %}
24   <div class="actions">
25     <a href="/new-note/">{% trans "New Note" %}</a>
26     {% block bottom-actions %}
27     {% endblock %}
28   </div>
29   {% endif %}
30   </body>
31 </html>