25 lines
713 B
HTML
25 lines
713 B
HTML
|
{% set root = get_section(path = "_index.md") %}
|
||
|
<!DOCTYPE html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="generator" content="zola" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||
|
<title>fmouhart.epheme.re</title>
|
||
|
<link rel="stylesheet" href="{{ get_url(path="/style.css") }}" />
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block header %}
|
||
|
{% include "header.html" ignore missing %}
|
||
|
{% endblock %}
|
||
|
{% block nav %}
|
||
|
{% include "nav.html" ignore missing %}
|
||
|
{% endblock %}
|
||
|
{% block main %}
|
||
|
{% endblock %}
|
||
|
{% block footer %}
|
||
|
{% include "footer.html" ignore missing %}
|
||
|
{% endblock %}
|
||
|
</body>
|
||
|
</html>
|