afpy.org/templates/_layout.jinja2
2017-09-21 19:04:50 +02:00

26 lines
1.1 KiB
Django/Jinja

<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<link rel="icon" href="{{ url_for('static', filename='images/favicon.ico') }}" />
<title>{% block title %} AFPY - Le site web de l'Association Francophone de Python {% endblock title %}</title>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/style.sass.css') }}" />
</head>
<body>
<nav>
<ul>
<li><a href="{{ url_for('pages') }}">Accueil</a></li>
<li><a href="{{ url_for('rest', name='a-propos') }}">Qui sommes-nous ?</a></li>
<li><a href="{{ url_for('feed', name='actus') }}">Actualités</a></li>
<li><a href="{{ url_for('feed', name='emplois') }}">Offres d'emplois</a></li>
<li><a href="{{ url_for('pages', template_name='communaute') }}">Communauté</a></li>
<li><a href="{{ url_for('pages', template_name='clavardage') }}">Clavardage</a></li>
<li><a href="{{ url_for('rest', name='adhesions') }}">Adhésions</a></li>
</ul>
</nav>
<main>
{% block main %}{% endblock main %}
</main>
</body>
</html>