4
0
mirror of https://git.coop/cotech/website.git synced 2025-07-07 05:40:49 +00:00

Style about and join pages

This commit is contained in:
Chris Lowis
2025-06-25 21:09:14 +01:00
parent b562b72d44
commit fa70991744
3 changed files with 62 additions and 15 deletions

View File

@ -4,20 +4,21 @@
<body>
{% include header.html %}
<section>
<h1>{{ page.heading }}</h1>
</section>
<div class="default-wrapper">
<section class="page-heading">
<h1>{{ page.heading }}</h1>
</section>
<section>
{{ content }}
</section>
{% if page.append_email_form %}
<section>
<p>Contact us <a href="{{ site.forum }}">using our forum</a>.</p>
</section>
{% endif %}
<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>