mirror of
https://git.coop/cotech/website.git
synced 2025-12-17 17:37:33 +00:00
23 lines
565 B
HTML
23 lines
565 B
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>
|
|
|
|
<section class="slice">
|
|
<p>{{ content }}</p>
|
|
</section>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|