18 lines
730 B
HTML
18 lines
730 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>{{title}}</title>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playfair+Display:700,900">
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="{{ theme_static('css/quill.css') }}">
|
|
</head>
|
|
<body>
|
|
{% include theme("header.html") %}
|
|
{% block content %}{% endblock %}
|
|
{% include theme("footer.html") %}
|
|
</body>
|
|
</html>
|
|
|