mirror of
https://git.coop/cotech/website.git
synced 2025-07-03 20:00:50 +00:00
Before this commit the logos were a fairly garish mixture of different colours, and many of the logos didn't work very well on a white background. In keeping with the new brand guidelines we've applied a greyscale filter to the logos, and Natasha has created some variants of the existing logos that work better on a black background. I've decided to keep all the original logos and their variants in case we want to switch again later, and chosen which one to used based on my taste. This seems to improve things and we can ask co-ops to provide us with higher res logos that work on black backgrounds later if we want to improve things further. Co-authored-by: Natasha Natarajan <natasha@outlandish.com>
32 lines
816 B
HTML
32 lines
816 B
HTML
<!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>
|