3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-19 06:57:32 +00:00

Remove services

We stripped out the metadata from the co-op files in the previous
commit so these are no longer linked to or used.
This commit is contained in:
Chris Lowis
2025-12-10 14:47:11 +00:00
parent 0f2a370ae7
commit ee5685d258
56 changed files with 0 additions and 262 deletions

View File

@ -48,19 +48,6 @@
<p>{{ content }}</p>
</section>
{% if page.services %}
<section>
<h2 id="services">Services</h2>
<ul>
{% for service in page.services %}
{% assign s = site.services | where: "slug", service | first %}
<li><a href="{{ s.url | relative_url }}">{{ s.name }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %}
{% if page.technologies %}
<section>
<h2 id="tech">Technologies</h2>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<div class="default-wrapper">
<section class="page-heading">
<h2>Coops that offer <span>{{ page.name }}</span></h2>
{% if page.description %}
<p>{{ page.description }}</p>
{% endif %}
</section>
<div class="logo-grid">
{% for coop in site.coops %}
{% if coop.services contains page.slug %}
<a class="logo-grid_link" href="{{ coop.url | relative_url }}">
<div class="logo-grid_item">
<img class="logo-grid_img" src="/images/coops/{{ coop.logo }}" alt="{{ coop.name }}" />
</div>
</a>
{% endif %}
{% endfor %}
</div>
</div>
{% include footer.html %}
</body>
</html>