3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-23 03:17:31 +00:00
Files
cotech-website/_layouts/coop.html
Chris Lowis 23afe2cb68 Additional styles for co-op content
This makes links visible and improves the display of blockquotes in
the co-op boxes.
2025-12-21 09:26:05 +00:00

33 lines
865 B
HTML

<!doctype html>
<html lang="en">
{% include head.html %}
<body class="padded">
<section class="coop-info-box">
<div class="coop-info-box__close">
<a href="/#members">
<img src="/assets/img/close.svg" alt="close" />
</a>
</div>
<div class="coop-info-box__logo">
<img class="greyscale" src="/images/coops/{{ page.logo }}" alt="{{ page.slug }}">
</div>
<div class="coop-info-box__content stack">
<p><strong>Co-operative name</strong></p>
<h2>{{ page.name }}</h2>
<p><strong>About this co-operative</strong></p>
<div class="coop-info-box__body stack">
{{ content }}
</div>
<p><strong>Co-operative website</strong></p>
<a class="btn" href="{{ page.website }}">{{ page.name }}</a>
</div>
</section>
</body>
</html>