26 lines
532 B
Plaintext
Raw Normal View History

2019-11-11 23:53:11 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
2019-11-12 15:11:03 +01:00
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
>
2019-11-11 23:53:11 +01:00
<title>{{ renderData.title or title or metadata.title }}</title>
2019-11-12 15:11:03 +01:00
<meta
name="description"
content="{{ renderData.description or description or metadata.description }}"
>
<link
rel="stylesheet"
href="{{ '/assets/css/base.css' | url }}"
2019-11-12 15:11:03 +01:00
>
</head>
2019-11-11 23:53:11 +01:00
<body>
{% block content %}
{% endblock content %}
</body>
</html>