mirror of
https://git.coop/cotech/website.git
synced 2025-06-26 08:30:47 +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.
34 lines
1.6 KiB
HTML
34 lines
1.6 KiB
HTML
<footer>
|
|
<ul>
|
|
<li><a href="/about">About <span>»</span></a></li>
|
|
<li><a href="/join">Join <span>»</span></a></li>
|
|
<li><a href="/manifesto">Manifesto <span>»</span></a></li>
|
|
</ul>
|
|
|
|
<div>
|
|
<img src="/assets/img/coop-logo.png" class="float-center" />
|
|
<p>Site developed by <a href="https://glowboxdesign.co.uk/" target="_blank">Glowbox Design</a>, <a href="https://gofreerange.com/" target="_blank">Go Free Range</a> & <a href="https://outlandish.com" target="_blank">Outlandish</a>.</p>
|
|
<p>Source code available on <a href="https://git.coop/cotech/website" target="_blank">git.coop</a>.</p>
|
|
<p>Hosted by <a href="https://www.webarchitects.coop/" target="_blank">Webarchitects</a> for CoTech © {{ 'now' | date: '%Y' }}</p>
|
|
</div>
|
|
|
|
<!-- Matomo -->
|
|
<script type="text/javascript">
|
|
var _paq = _paq || [];
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
|
|
_paq.push(["setDomains", ["*.coops.tech","*.dev.coops.tech","*.static.coops.tech","*.www.coops.tech"]]);
|
|
_paq.push(["disableCookies"]);
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="https://stats.webarch.net/";
|
|
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
|
_paq.push(['setSiteId', '223']);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<!-- End Matomo Code -->
|
|
</footer>
|