fel_website/themes/felicie/templates/base.html

28 lines
656 B
HTML
Raw Normal View History

2020-04-03 13:05:13 +00:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
2020-04-24 15:55:13 +00:00
<link rel="stylesheet" href="theme/css/{{ CSS_FILE }}" type="text/css" />
2020-04-03 13:05:13 +00:00
</head>
<body>
<div class='sidebar'>
<a id='home' href='index.html'> /HOME </a></br>
2020-04-24 15:55:13 +00:00
2020-04-03 13:05:13 +00:00
{% if articles %}
2020-04-24 15:55:13 +00:00
<div id='article-anchors'>
2020-04-03 13:05:13 +00:00
{% for article in articles %}
<a href={{ article.url }}>{{ article.title }}</a></br>
{% endfor %}
</div>
{% endif %}
2020-04-24 15:55:13 +00:00
2020-04-03 13:05:13 +00:00
</div>
<div class='content'>
{% block content%} {% endblock %}
</div>
</body>
</html>