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"
|
2019-11-17 22:26:48 +01:00
|
|
|
href="{{ '/assets/css/base.css' | url }}"
|
2019-11-12 15:11:03 +01:00
|
|
|
>
|
|
|
|
</head>
|
2019-11-11 23:53:11 +01:00
|
|
|
<body>
|
2019-11-17 22:26:48 +01:00
|
|
|
{% block content %}
|
|
|
|
{% endblock content %}
|
2019-11-12 01:17:50 +01:00
|
|
|
</body>
|
2019-11-17 22:26:48 +01:00
|
|
|
</html>
|