15 lines
475 B
Plaintext
Raw Normal View History

2019-11-11 23:53:11 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2019-11-12 15:11:03 +01:00
2019-11-11 23:53:11 +01:00
<title>{{ renderData.title or title or metadata.title }}</title>
<meta name="description" content="{{ renderData.description or description or metadata.description }}">
2019-11-12 15:11:03 +01:00
<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>