This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
cardiffbjj.co.uk/source/_layouts/default.html.twig

27 lines
947 B
Twig
Raw Normal View History

2018-07-20 22:06:44 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ site.title }}</title>
2018-07-20 22:30:35 +00:00
<link href="/build/css/app.css" rel="stylesheet">
2018-07-21 21:51:22 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2018-07-20 22:06:44 +00:00
</head>
2018-07-23 06:11:52 +00:00
<body class="text-black bg-grey-lightest font-sans text-sm sm:text-base">
2018-07-23 00:30:53 +00:00
<div id="root">
2018-08-09 22:39:58 +00:00
{% include 'layout/header' %}
{% include 'layout/main-menu' %}
2018-07-21 18:53:24 +00:00
2018-07-23 00:30:53 +00:00
<div class="container mx-auto px-4">
2018-07-23 06:11:52 +00:00
<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">
2018-07-23 00:30:53 +00:00
{{ page.title }}
</h1>
2018-07-21 18:53:24 +00:00
2018-07-23 00:30:53 +00:00
{% block content %}{% endblock %}
</div>
2018-07-21 18:53:24 +00:00
</div>
</div>
2018-07-23 00:38:35 +00:00
<script src="/build/js/all.js"></script>
2018-07-20 22:06:44 +00:00
</body>
</html>