website/template/gnuragistes/templates/base.html

44 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="utf-8">
<title>{% block pagename %}{%endblock%} | {{SITENAME}}</title>
<meta name="keywords" content="support gnu/linux, bruxelles, logiciels libres, collectif">
<meta name="description" content="Gnuragistes, support GNU/Linux et collectivité" />
<meta name="robots" content="archive,index,follow" />
<link href="/theme/css/gnuragistes.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="/theme/images/zebras-favicon.png" />
</head>
<body>
<section id=head>
<h1>{% block title %}{% endblock %}</h1>
<h2>{% block subtitle %}{% endblock %}</h2>
<hr class=title>
<nav id=menu>
{% for text, link, icon in MENUITEMS %}
<a href="{{ link }}" class="button">
{% if icon != "none" %}<i class="fa {{icon}}"></i>{% endif %}
{{ text }}</a>
{% endfor %}
</nav>
<h3>{% block description%}{% endblock %}</h3>
</section>
<section id="main">
{% block content %}
{% endblock %}
</section>
<section id="footer">
Copyleft <span class="fa fa-copyright fa-flip-horizontal"></span> {% block author%}{{ AUTHOR }} {{ TODAY | strftime('%Y') }}{% endblock %}
</section>
</body>
</html>