4
0
mirror of https://git.coop/cotech/website.git synced 2025-06-26 16:40:52 +00:00
Files
cotech-website/_layouts/default.html
2025-06-25 21:09:14 +01:00

25 lines
518 B
HTML

<!doctype html>
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<div class="default-wrapper">
<section class="page-heading">
<h1>{{ page.heading }}</h1>
</section>
<section class="content">
{{ content }}
</section>
{% if page.append_email_form %}
<section>
<p>Contact us <a href="{{ site.forum }}">using our forum</a>.</p>
</section>
{% endif %}
</div>
{% include footer.html %}
</body>
</html>