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/base.html.twig

25 lines
854 B
Twig
Raw Permalink Normal View History

2018-10-06 09:10:18 +00:00
{% macro canonicalUrl(site, page) -%}
{{ site.url }}
{{- page.url != '//' ? page.url }}
{%- endmacro %}
{% import _self as helpers %}
2018-09-04 21:03:42 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2018-10-05 08:02:07 +00:00
<title>{% block title %}{{ site.title }}{% endblock %}</title>
2018-09-04 21:03:42 +00:00
<link href="/dist/css/app.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,900" rel="stylesheet">
2018-10-06 09:10:18 +00:00
<link rel="canonical" href="{{ helpers.canonicalUrl(page, site) }}"/>
2018-09-04 21:03:42 +00:00
</head>
2019-01-05 22:47:51 +00:00
<body class="text-black bg-grey-lightest font-sans text-base">
2018-09-04 21:03:42 +00:00
<div id="app">
{% block body %}{% endblock %}
</div>
<script src="/dist/js/all.js"></script>
</body>
</html>