mirror of
https://git.coop/cotech/website.git
synced 2025-06-26 16:40:52 +00:00
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.
24 lines
415 B
HTML
24 lines
415 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
{% include head.html %}
|
|
<body>
|
|
{% include header.html %}
|
|
|
|
<section>
|
|
<h1>{{ page.heading }}</h1>
|
|
</section>
|
|
|
|
<section>
|
|
{{ content }}
|
|
</section>
|
|
|
|
{% if page.append_email_form %}
|
|
<section>
|
|
<p>Contact us <a href="{{ site.forum }}">using our forum</a>.</p>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|