mirror of
https://git.coop/cotech/website.git
synced 2024-11-22 14:43:07 +00:00
10 lines
183 B
HTML
10 lines
183 B
HTML
<h1>Coops that offer {{ page.name }}</h1>
|
|
|
|
<ul>
|
|
{% for coop in site.coops %}
|
|
{% if coop.services contains page.slug %}
|
|
<li>{{ coop.name }}</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|