mirror of
https://git.coop/cotech/website.git
synced 2025-07-05 04:40:52 +00:00
Creative Co-op have recently prepared some brand guidelines for CoTech, including a new logo, typography suggestions and background images. This commit restyles the site to apply, as best we can, these guidelines. It's hard to split this into smaller commits because the decision to use a black background colour means many things have to change. Notably we've removed the "about/join" footer, as it was hard to choose a bg colour and without one it became more apparent that this footer was more in the way than useful. Co-authored-by: Natasha Natarajan <natasha@outlandish.com>
25 lines
683 B
HTML
25 lines
683 B
HTML
<!doctype html>
|
||
<html lang="en" prefix="og: http://ogp.me/ns#">
|
||
{% include head.html %}
|
||
<body>
|
||
{% include header.html %}
|
||
|
||
<section class="hero">
|
||
<div class="hero_container">
|
||
<h1 class="hero_title">Cooperative Technologists</h1>
|
||
<h2 class="hero_body">Creative technology companies, fully owned and controlled by
|
||
the people who do the work.<br />
|
||
Cooperative ownership means tech that’s better for its workers and customers.</h2>
|
||
|
||
<span class="hero_button">
|
||
<a href="/about#manifesto">Our manifesto</a>
|
||
</span>
|
||
</div>
|
||
</section>
|
||
|
||
{{ content }}
|
||
|
||
{% include footer.html %}
|
||
</body>
|
||
</html>
|