4
0
mirror of https://git.coop/cotech/website.git synced 2025-06-26 16:40:52 +00:00
Files
cotech-website/_layouts/home.html
Chris Lowis 3517d04637 Strip out CSS, JS and extra markup
The site had around 7000 lines of CSS and 23,000 lines of JS. It also
used a framework called "Zurb" to build the layout. We're planning to
rebrand the website and to make that work easier I think it would help
me (and hopefully those that come after me) to strip out all of these
technologies and recreate the site with a simple stylesheet.

By doing so I think we lose a couple of features, such as the zooming hover
states on the grids of images. Some features, like the "sticky" header
are probably better implemented nowadays in pure CSS.

Given that the site is maintained by volunteers I think the simpler we
can make it the better.
2025-06-20 14:07:32 +01:00

25 lines
581 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en" prefix="og: http://ogp.me/ns#">
{% include head.html %}
<body>
{% include header.html %}
<div>
<section>
<h1>Cooperative Technologists</h1>
<p>Creative technology companies, fully owned and controlled by
the people who do the work. Cooperative ownership means tech
thats better for its workers and customers.</p>
<span>
<a href="manifesto">Our manifesto</a>
</span>
</section>
{{ content }}
</div>
{% include footer.html %}
</body>
</html>