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

19 lines
537 B
Twig
Raw Permalink Normal View History

2018-10-05 07:42:11 +00:00
{% extends 'base' %}
2018-09-04 21:03:42 +00:00
2018-10-05 08:02:07 +00:00
{% block title %}{{ page.title }} | {{ site.title }}{% endblock %}
2018-09-04 21:03:42 +00:00
{% block body %}
{% 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">
2018-10-05 07:41:04 +00:00
<h1 class="uppercase text-red text-center mb-6 sm:mb-12 font-montserrat font-black tracking-wider">
2018-09-04 21:03:42 +00:00
{{ page.title }}
</h1>
{% block content %}{% endblock %}
</div>
</div>
{% endblock %}