cotech-website/index.html

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>