2021-01-28 08:55:36 +01:00
<!DOCTYPE html>
< html lang = "{{ DEFAULT_LANG }}" >
< head >
{% block head %}
< title > {% block title %}{{ SITENAME }}{% endblock title %}< / title >
< meta charset = "utf-8" / >
2021-01-30 20:19:24 +01:00
< link rel = "stylesheet" href = "{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/style.css" / >
2021-07-20 02:24:38 +02:00
<!-- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css">
< link rel = "stylesheet" href = "{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}" / >
< link rel = "stylesheet" href = "{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/fort-awesome.css" / > -->
2021-01-28 08:55:36 +01:00
{% endblock head %}
< / head >
< body >
< header >
2021-08-20 18:06:25 +02:00
< a id = "blog-name" href = "{{ SITEURL }}/" > {{ SITENAME.upper() }}< / a >
2021-01-28 08:55:36 +01:00
{% if DISPLAY_CATEGORIES_ON_MENU %}
{% for name, tmp in categories %}
2021-01-30 20:19:24 +01:00
< a href = "{{ SITEURL }}/{{ name.url }}" > {{ name }}< / a >
2021-01-28 08:55:36 +01:00
{% endfor %}
{% endif %}
< / header >
{% block content %}
{% endblock content %}
< footer >
2021-08-20 01:32:22 +02:00
< div id = "licence-code" >
<!-- <a href="https://git.gnous.eu/Rick/nuir">Code source du site</a> sous <a href="https://www.gnu.org/licenses/gpl - 3.0.html">licence GPL3</a>. -->
2021-08-20 01:40:49 +02:00
< a href = "https://git.gnous.eu/Rick/nuir" > < img alt = "GPL3" src = "https://www.gnu.org/graphics/gplv3-or-later-sm.png" / > < / a >
2021-08-20 01:32:22 +02:00
< / div >
< div id = "logo-vim" >
2021-08-20 18:06:25 +02:00
< a href = "https://www.vim.org" > < img alt = "Use Vim" src = "https://www.vim.org/images/vi_improved.gif" / > < / a >
2021-08-20 01:32:22 +02:00
< / div >
< div id = "infos-footer" >
Thème principal fait par < a href = "https://eban.bzh" > Eban< / a > , inspiré en partie par < a href = "https://github.com/onur/medius" > medius< / a > . Utilise le moteur < a href = "https://blog.getpelican.com/" > Pelican< / a > .
< / div >
< div id = "licence-art" >
< a rel = "license" href = "http://creativecommons.org/licenses/by-sa/4.0/" > < img alt = "Creative Commons License" style = "border-width:0" src = "https://i.creativecommons.org/l/by-sa/4.0/88x31.png" / > < / a >
< / div >
2021-01-28 08:55:36 +01:00
< / footer >
< / body >
< / html >