3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-19 02:17:33 +00:00
Files
cotech-website/index.html
Chris Lowis 940b138b46 Strip out unwanted CSS
I think it's probably easier to start from a cleaner slate for this
redesign, rather than try to incrementally refactor towards the new
design. Some of the base styles are fine and I've retained some of the
CSS variables. I've also kept the header as it probably will be useful
to refactor rather than completely re-do this.
2025-12-16 15:48:32 +00:00

20 lines
389 B
HTML

---
title: CoTech
layout: default
---
<section id="members">
<h2>Members</h2>
<p>Take a look at who is part of the CoTech network</p>
<div>
{% for coop in site.coops %}
<a href="{{ coop.url | relative_url }}">
<div>
<img class="greyscale" src="/images/coops/{{ coop.logo }}" alt="{{ coop.name }}" />
</div>
</a>
{% endfor %}
</div>
</section>