mirror of
https://git.coop/cotech/website.git
synced 2025-12-17 14:17:32 +00:00
I think it's probably easier to start from a cleaner slate for this redesign, rather than try to incrementally refactor towards the new design. Some of the base styles are fine and I've retained some of the CSS variables. I've also kept the header as it probably will be useful to refactor rather than completely re-do this.
23 lines
475 B
HTML
23 lines
475 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
{% include header.html %}
|
|
|
|
<section>
|
|
<a href="{{ page.website }}" target="_blank">
|
|
<img src="/images/coops/{{ page.logo }}" alt="{{ page.slug }}">
|
|
</a>
|
|
<h1>{{ page.name }}</h1>
|
|
<a href="{{ page.website }}" target="_blank">{{ page.website }}</a>
|
|
</section>
|
|
|
|
<section>
|
|
<p>{{ content }}</p>
|
|
</section>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|