3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-17 17:37:33 +00:00
Files
cotech-website/_layouts/coop.html
Chris Lowis c00d8889a2 Simplify co-op page markup
Now we no longer have two columns of content.
2025-12-16 15:48:32 +00:00

23 lines
565 B
HTML

<!doctype html>
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<section class="slice">
<a href="{{ page.website }}" target="_blank">
<img class="slice_logo" src="/images/coops/{{ page.logo }}" alt="{{ page.slug }}">
</a>
<h1 class="slice_title">{{ page.name }}</h1>
<a class="slice_subtitle" href="{{ page.website }}" target="_blank">{{ page.website }}</a>
</section>
<section class="slice">
<p>{{ content }}</p>
</section>
{% include footer.html %}
</body>
</html>