diff --git a/_layouts/coop.html b/_layouts/coop.html
index fd85dcc..3f8ce8c 100644
--- a/_layouts/coop.html
+++ b/_layouts/coop.html
@@ -82,17 +82,12 @@
Services
-
+
{% for service in page.services %}
{% assign s = site.services | where: "slug", service | first %}
-
+ - {{ s.name }}
{% endfor %}
-
+
{% endif %}
@@ -102,17 +97,12 @@
Technologies
-
+
{% for technology in page.technologies %}
- {% assign t = site.technologies | where: "slug", technology | first %}
-
- {% endfor %}
-
+ {% assign t = site.technologies | where: "slug", technology | first %}
+ {{ t.name }}
+ {% endfor %}
+
{% endif %}
@@ -122,15 +112,12 @@
Clients
-
+
{% for client in page.clients %}
- {% assign c = site.clients | where: "slug", client | first %}
-
+ {% assign c = site.clients | where: "slug", client | first %}
+ - {{ c.title }}
{% endfor %}
-
+
{% endif %}