<!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='sidebar'>
        <a id='home' href='index.html'> /HOME </a></br>

        {% if articles %}
        <div id='article-anchors'>
            {% for article in articles %}
                <a href={{ article.url }}>{{ article.title }}</a></br>
            {% endfor %}
        </div>
        {% endif %}

    </div>
    
    <div class='content'>
        {% block content%} {% endblock %}
    </div>

</body>

</html>