3
0
mirror of https://git.coop/cotech/website.git synced 2026-01-02 20:27:32 +00:00

Strip out unwanted CSS

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.
This commit is contained in:
Chris Lowis
2025-12-15 10:30:16 +00:00
parent f175da3ca4
commit 940b138b46
5 changed files with 18 additions and 343 deletions

View File

@ -5,15 +5,15 @@
<body>
{% include header.html %}
<section class="slice">
<section>
<a href="{{ page.website }}" target="_blank">
<img class="slice_logo" src="/images/coops/{{ page.logo }}" alt="{{ page.slug }}">
<img 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>
<h1>{{ page.name }}</h1>
<a href="{{ page.website }}" target="_blank">{{ page.website }}</a>
</section>
<section class="slice">
<section>
<p>{{ content }}</p>
</section>

View File

@ -4,21 +4,10 @@
<body>
{% include header.html %}
<div class="default-wrapper">
<section class="page-heading">
<h1>{{ page.heading }}</h1>
</section>
<section>
{{ content }}
</section>
<section class="content">
{{ content }}
</section>
{% if page.append_email_form %}
<section>
<p>Contact us <a href="{{ site.forum }}">using our forum</a>.</p>
</section>
{% endif %}
</div>
{% include footer.html %}
</body>
</html>