website/template/gnuragistes/templates/base.html

49 lines
1.5 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>
<div id=menu>
{% for text, link, icon in MENUITEMS %}
<a href="{{ link }}" class="button {% if text.lower() == page_name %}selected{% endif %}">
{% if icon != "none" %}<i class="fa {{icon}}"></i>{% endif %}
{{ text }}</a>
{% endfor %}
{% for menu_page in PAGES|sort(attribute='order')|rejectattr('hiddeninmenu') %}
<a href="/{{ menu_page.url }}" class="button {% if page and page.shorttitle == menu_page.shorttitle %}selected{% endif %}">
{{ menu_page.shorttitle }}</a>
{% endfor %}
</div>
<h1>{% block title %}{% endblock %}</h1>
<h2>{% block subtitle %}{% endblock %}</h2>
<hr>
<h3>{% block description%}{% endblock %}</h3>
<div id="main">
{% block content %}
{% endblock %}
</div>
<div id="footer" class="footer">
Copyleft 2021, les Gnuragistes.
</div>
{% if TOOLBOX %}
{% extends "toolbox.html" %}
{% endif %}
</body>
</html>