27 lines
947 B
Twig
27 lines
947 B
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ site.title }}</title>
|
|
<link href="/build/css/app.css" rel="stylesheet">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
</head>
|
|
<body class="text-black bg-grey-lightest font-sans text-sm sm:text-base">
|
|
<div id="root">
|
|
{% include 'layout/header' %}
|
|
{% include 'layout/main-menu' %}
|
|
|
|
<div class="container mx-auto px-4">
|
|
<div class="leading-normal pt-8 sm:pt-16 pb-16 sm:pb-24">
|
|
<h1 class="uppercase text-red text-center mb-6 sm:mb-12 text-bold tracking-wide">
|
|
{{ page.title }}
|
|
</h1>
|
|
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="/build/js/all.js"></script>
|
|
</body>
|
|
</html>
|