33 lines
831 B
HTML
33 lines
831 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
|
||
|
<link rel="stylesheet" href="theme/css/{{ CSS_FILE }}" type="text/css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class='banner'>
|
||
|
<a href='index.html'>
|
||
|
<img class='banner-img' src='images/banner_croped.png'>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div align='center' class='navbar'>
|
||
|
<a id='home' href='index.html'></a>
|
||
|
|
||
|
{% if articles %}
|
||
|
<div id='article-anchors'>
|
||
|
{% for article in articles %}
|
||
|
<a class='article-anchor' href={{ article.url }}>{{ article.title }}</a>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
<div class='content'>
|
||
|
{% block content%}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|