26 lines
856 B
HTML
26 lines
856 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>{% if section.title %}{{section.title}} |{% endif %} Fabrice Mouhartem</title>
|
|
<link rel="stylesheet" href="{{ get_url(path="/style.css") }}" />
|
|
<link rel="shortcut icon" type="image/png" href="{{ get_url(path="/img/lock.png") }}" />
|
|
</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>
|