theolem.org/themes/theo_lem/templates/base.html

29 lines
818 B
HTML
Raw Normal View History

2020-04-29 18:17:21 +00:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
<link rel="stylesheet" href="{{ SITE_URL }}/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}" type="text/css" />
2020-04-29 18:17:21 +00:00
</head>
<body>
<div class='banner'>
<a href='{{SITE_URL}}/index.html'>
<img class='banner-img' src='{{ SITE_URL }}/images/banner_croped.png'>
2020-04-29 18:17:21 +00:00
</a>
</div>
<div align='center' class='navbar'>
{% if articles %}
{% for category, article in categories %}
<a class='categories' href= "{{SITE_URL}}/{{ category.url }}" > {{ category }}</a>
2020-04-29 18:17:21 +00:00
{% endfor %}
{% endif %}
</div>
<div class='content'>
{% block content%}
{% endblock %}
</div>
</body>
</html>