16 lines
662 B
HTML
16 lines
662 B
HTML
{% import "macros.html" as macros %}
|
|
<!doctype html>
|
|
<html lang="{{lang}}">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>{% block title %}{% endblock title %}</title>
|
|
<link rel="stylesheet" href="/css/style.css"/>
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
|
|
<link rel="alternate" type="application/atom+xml" title="Atom" href="/{{macros::langurl()}}atom.xml"/>
|
|
<meta name="viewport" content="width=device-width"/>
|
|
<meta name="author" content="Pascal Engélibert"/>
|
|
<link type="text/plain" rel="author" href="/humans.txt"/>
|
|
{% block head %}{% endblock head %}
|
|
</head>
|
|
<body>{% block body %}{% endblock body %}</body>
|
|
</html>
|