]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/base.html
do not include non-feed posts on homepage
[chloro.git] / chloro / phyll / 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 %}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     <link rel="shortcut icon" href="/static/icon.png">
10     <link rel="manifest" href="/static/manifest.json">
11     {% if request.user.is_staff %}
12     <script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
13     <script src="/static/js/chloro.js"></script>
14     {% endif %}
15     {% block bottom-head %}
16     {% endblock %}
17   </head>
18   <body>
19     <header>
20       <h1><a href="/">Coin web de FrĂ©dĂ©ric PĂ©ters</a></h1>
21     </header>
22     <main class="{% block content-class %}{% endblock %}">
23       {% block body %}
24       {% endblock %}
25     </main>
26     <footer>
27       <p>Contact : <a href="mailto:fpeters@0d.be">fpeters@0d.be</a></p>
28     </footer>
29   {% if request.user.is_staff %}
30   <div class="actions">
31     <a href="/new-note/">{% trans "New Note" %}</a>
32     {% block bottom-actions %}
33     {% endblock %}
34   </div>
35   {% endif %}
36   </body>
37 </html>