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:
@ -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>
|
||||
|
||||
|
||||
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user