3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-17 14:17:32 +00:00
Files
cotech-website/_layouts/default.html
Chris Lowis 45ea23b18c Apply stack class to content wrapper
And use `main` instead as this is more semantically useful.
2025-12-16 15:48:33 +00:00

14 lines
205 B
HTML

<!doctype html>
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<main class="stack">
{{ content }}
</main>
{% include footer.html %}
</body>
</html>