Initial Commit
This commit is contained in:
24
templates/base.html
Normal file
24
templates/base.html
Normal file
@ -0,0 +1,24 @@
|
||||
{% 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>
|
Reference in New Issue
Block a user