oliverdavies.uk/source/_layouts/app.html.twig

14 lines
484 B
Twig
Raw Normal View History

2021-06-30 07:00:00 +00:00
<!DOCTYPE html>
<html lang="{{ site.locale|default('en') }}">
<head>
2021-06-30 07:00:00 +00:00
<link type="text/css" rel="stylesheet" href="/build/app.css"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,700;1,300&display=swap" rel="stylesheet">
2021-06-30 07:00:00 +00:00
{% include 'meta' with { page, site } only %}
2021-06-30 07:00:00 +00:00
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>