]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/base.html
57969453c04308c585d885b22e47e87fab76d9dc
[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   {% block body %}
13   {% endblock %}
14   {% if request.user.is_staff %}
15   <div class="actions">
16     <a href="/new-note/">{% trans "New Note" %}</a>
17     {% block bottom-actions %}
18     {% endblock %}
19   </div>
20   {% endif %}
21   </body>
22 </html>