21 lines
420 B
HTML
21 lines
420 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{title}}</title>
|
|
<meta name="author" content="Franz Dietrich">
|
|
<meta http-equiv="robots" content="[noindex|nofollow]">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
|
|
</html> |