fel_website/themes/felicie/templates/base.html

25 lines
672 B
HTML
Raw Normal View History

2020-04-03 13:05:13 +00:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
2020-05-05 16:11:10 +00:00
<link rel="stylesheet" href="{{ SITE_URL }}/theme/css/main-v2.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-04-03 13:05:13 +00:00
</head>
<body>
2020-05-05 16:11:10 +00:00
<header>
<a href="{{ SITE_URL }}/index.html"><h1>better days</h1></a>
2020-05-05 16:11:10 +00:00
</header>
2020-04-03 13:05:13 +00:00
<div class='content'>
{% block content%} {% endblock %}
</div>
</body>
2020-05-05 16:11:10 +00:00
<footer>
<a id="about" href="{{ SITE_URL }}/pages/about.html">about</a>
<a id="download" href="{{ SITE_URL}}/pages/download.html">download</a>
2020-05-05 16:11:10 +00:00
</footer>
2020-04-03 13:05:13 +00:00
</html>