3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-23 15:27:31 +00:00
Files
cotech-website/_layouts/coop.html
Chris Lowis 698828a782 Remove sidebar from co-op pages
We removed the metadata that populates this sidebar in a previous
commit.
2025-12-16 15:48:31 +00:00

30 lines
703 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>
<div class="two-column">
<div class="two-column_left">
</div>
<div class="two-column_right">
<section>
<p>{{ content }}</p>
</section>
</div>
</div>
{% include footer.html %}
</body>
</html>