blog.notmyidea.org/mnmlist/templates/base.html

56 lines
1.7 KiB
HTML

<!doctype html>
<html lang="fr">
<head>
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}?v4"
type="text/css"
/>
<link
href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}"
type="application/atom+xml"
rel="alternate"
title="{{ SITENAME }} ATOM Feed"
/>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
{% if FEED_RSS %}
<link
href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}"
type="application/atom+xml"
rel="alternate"
title="{{ SITENAME }} RSS Feed"
/>
{% endif %} {% block extra_head %}{% endblock %}
</head>
<body>
<div id="content">
{% if page_name != "index" and not article %}
<a href="/">Aller à l'accueil</a>
{% endif %} {% block content %}{% endblock %}
<hr />
<footer>
<ul id="links">
<li>
<a class="main" href="/">{{ SITENAME }}</a>
</li>
{% for title, link in FOOTERITEMS %}
<li>
<a href="{{ link }}">{{ title }}</a>
</li>
{% endfor %}
<li>
<a id="feed" href="/feeds/all.atom.xml">
<img alt="RSS Logo" src="/theme/rss.svg" />
</a>
</li>
</ul>
</footer>
</div>
</body>
</html>