This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/source/_layouts/base.html.twig

30 lines
1.1 KiB
Twig
Raw Normal View History

2019-04-09 14:08:53 +01:00
<!DOCTYPE html>
2019-05-07 17:18:56 +01:00
<html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# schema: http://schema.org/ sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema# ">
2019-04-09 14:08:53 +01:00
<head>
{% include 'meta' %}
</head>
2019-05-07 17:18:56 +01:00
<body class="path-frontpage">
2019-04-09 14:08:53 +01:00
<a href="#main-content" class="visually-hidden focusable skip-link">
Skip to main content
</a>
2019-05-07 17:21:34 +01:00
<div class="tw-min-h-screen tw-flex tw-flex-col">
2019-04-09 14:08:53 +01:00
{% include 'banner' %}
2019-05-14 22:10:45 +01:00
<div class="tw-flex tw-flex-col tw-flex-1">
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
2019-04-09 14:08:53 +01:00
2019-05-14 22:10:45 +01:00
{% if page.update_text %}
{% include 'update-text' %}
{% endif %}
</div>
2019-05-14 19:58:10 +01:00
2019-05-14 22:10:45 +01:00
<div>
{% block content_bottom %}{% endblock %}
{% include 'footer' %}
</div>
</div>
2019-04-09 14:08:53 +01:00
</body>
</html>