]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/base.html
de553ab47a7d01823bdc3bace5ccceadfaaf1409
[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     <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   {% if request.user.is_staff %}
21   <div class="actions">
22     <a href="/new-note/">{% trans "New Note" %}</a>
23     {% block bottom-actions %}
24     {% endblock %}
25   </div>
26   {% endif %}
27   </body>
28 </html>