mirror of
https://git.coop/cotech/website.git
synced 2025-07-17 02:30:55 +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>
95 lines
2.6 KiB
HTML
95 lines
2.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
{% include header.html %}
|
|
|
|
<section class="slice">
|
|
<a href="{{ page.website }}" target="_blank">
|
|
<img class="slice_logo" src="/images/coops/{{ page.logo }}" alt="{{ page.slug }}">
|
|
</a>
|
|
<h1 class="slice_title">{{ page.name }}</h1>
|
|
<a class="slice_subtitle" href="{{ page.website }}" target="_blank">{{ page.website }}</a>
|
|
</section>
|
|
|
|
<div class="two-column">
|
|
<div class="two-column_left">
|
|
{% if page.email %}
|
|
<div>
|
|
<h5>Email:</h5>
|
|
<p><a href="mailto:{{ page.email }}">{{ page.email }}</a></p>
|
|
</div>
|
|
{% endif %}
|
|
{% if page.telephone %}
|
|
<div>
|
|
<h5>Tel:</h5>
|
|
<p>{{ page.telephone }}</p>
|
|
</div>
|
|
{% endif %}
|
|
{% if page.address %}
|
|
<div>
|
|
<h5>Address:</h5>
|
|
<p>{{ page.address | split: "," | join: "<br>" }}</p>
|
|
</div>
|
|
{% endif %}
|
|
<div>
|
|
{% if page.twitter %}
|
|
<p><a href="http://twitter.com/{{ page.twitter }}" target="_blank">Twitter</a></p>
|
|
{% endif %}
|
|
{% if page.github %}
|
|
<p><a href="https://github.com/{{ page.github }}" target="_blank">Github</a></p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="two-column_right">
|
|
<section>
|
|
<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>
|
|
|
|
<ul>
|
|
{% for technology in page.technologies %}
|
|
{% assign t = site.technologies | where: "slug", technology | first %}
|
|
<li><a href="{{ t.url | relative_url }}">{{ t.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% if page.clients %}
|
|
<section>
|
|
<h2 id="clients">Clients</h2>
|
|
|
|
<ul>
|
|
{% for client in page.clients %}
|
|
{% assign c = site.clients | where: "slug", client | first %}
|
|
<li>{{ c.title }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|