cotech-website/_layouts/service.html

10 lines
227 B
HTML
Raw Normal View History

2017-06-27 15:08:54 +00:00
<h1>Coops that offer {{ page.name }}</h1>
2017-06-27 15:12:21 +00:00
<ul>
{% for coop in site.coops %}
{% if coop.services contains page.slug %}
2017-06-27 15:16:31 +00:00
<li><a href="{{ coop.url | relative_url }}">{{ coop.name }}</a></li>
2017-06-27 15:12:21 +00:00
{% endif %}
{% endfor %}
</ul>