Use a collection for coops instead of data file

This commit is contained in:
Chris Roos
2017-06-27 14:58:29 +01:00
parent 38ff063158
commit 549156c82b
7 changed files with 29 additions and 7 deletions

View File

@ -3,10 +3,10 @@ title: CoTech
---
<ul>
{% for member in site.data.members %}
{% for coop in site.coops %}
<li>
<a href="{{ member.website }}">
{{ member.name }}
<a href="{{ coop.url }}">
{{ coop.name }}
</a>
</li>
{% endfor %}