]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/base.html
d46f147950d922879389a13aa5393e13abc16ca5
[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>Coin web de FrĂ©dĂ©ric PĂ©ters</title>
7     <link rel="stylesheet" type="text/css" href="/static/css/style.css">
8     {% block bottom-head %}
9     {% endblock %}
10   </head>
11   <body>
12     <header>
13       <h1><a href="/">Coin web de FrĂ©dĂ©ric PĂ©ters</a></h1>
14     </header>
15     <main class="{% block content-class %}{% endblock %}">
16       {% block body %}
17       {% endblock %}
18     </main>
19   {% if request.user.is_staff %}
20   <div class="actions">
21     <a href="/new-note/">{% trans "New Note" %}</a>
22     {% block bottom-actions %}
23     {% endblock %}
24   </div>
25   {% endif %}
26   </body>
27 </html>