5
0
mirror of https://git.coop/cotech/website.git synced 2024-07-10 22:29:40 +00:00
cotech-website/index.html
2017-06-27 16:17:46 +01:00

30 lines
391 B
HTML

---
title: CoTech
---
<h1>CoTech</h1>
Co-ops: {{ site.coops.size }}
<ul>
{% for coop in site.coops %}
<li>
<a href="{{ coop.url | relative_url }}">
{{ coop.name }}
</a>
</li>
{% endfor %}
</ul>
<h2>Services</h2>
<ul>
{% for service in site.services %}
<li>
<a href="{{ service.url | relative_url }}">
{{ service.name }}
</a>
</li>
{% endfor %}
</ul>