mirror of
https://git.coop/cotech/website.git
synced 2024-11-22 06:33:07 +00:00
Extract default layout
This commit is contained in:
parent
d2482a2fd8
commit
319c24ced0
104
_layouts/default.html
Normal file
104
_layouts/default.html
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en-US">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<!-- TODO this could do with a tidy-up -->
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>{{ page.title }} « Cooperative Technologists</title>
|
||||||
|
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
||||||
|
<link rel='stylesheet' id='oowp_css-css' href='{{ site.github.url }}/app/mu-plugins/oowp/oowp.css?ver=4.8' type='text/css' media='all' />
|
||||||
|
<link rel='stylesheet' id='app-css' href='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/css/app.css?ver=4.8' type='text/css' media='all' />
|
||||||
|
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/vendor.js?ver=4.8'></script>
|
||||||
|
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-32x32.png" sizes="32x32" />
|
||||||
|
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-192x192.png" sizes="192x192" />
|
||||||
|
<link rel="apple-touch-icon-precomposed" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-180x180.png" />
|
||||||
|
<meta name="msapplication-TileImage" content="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-270x270.png" />
|
||||||
|
<style type="text/css" id="wp-custom-css">
|
||||||
|
section#contact div.row div p a:active,
|
||||||
|
section#contact div.row div p a:focus,
|
||||||
|
section#contact div.row div p a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<link rel="stylesheet" href="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/foundation-icons/foundation-icons.css">
|
||||||
|
<link rel="icon" type="image/x-icon" href="app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.mapboxAccessToken = 'pk.eyJ1IjoiY290ZWNoIiwiYSI6ImNpemgxbzhwODAwMHMzM28zdXF3cGxyYmwifQ.9nPExuEUqwblCCl-6gyFXA';
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
|
||||||
|
<div data-sticky-container style="height: 82.7812px;">
|
||||||
|
|
||||||
|
<div class="top-bar sticky iss-stuck is-at-top" data-sticky data-margin-top=0>
|
||||||
|
<div class="top-bar-title">
|
||||||
|
<strong>
|
||||||
|
<a id="logo" href="/">
|
||||||
|
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">CoTech
|
||||||
|
</a>
|
||||||
|
</strong>
|
||||||
|
<a class="back" href="/">← Go Back</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div id="page-banner">
|
||||||
|
<div class="row">
|
||||||
|
<div class="small-centered small-12 medium-10 large-8 columns">
|
||||||
|
<h2>{{ page.heading }}</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ content }}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div class="footer-upper">
|
||||||
|
<div class="row">
|
||||||
|
<div class="small-12 columns">
|
||||||
|
|
||||||
|
<div class="menu-centered">
|
||||||
|
<ul class="menu">
|
||||||
|
<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>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer-lower">
|
||||||
|
<div class="row">
|
||||||
|
<div class="small-12 columns">
|
||||||
|
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/coop-logo.png" class="float-center" />
|
||||||
|
<p>Site developed by <a href="http://glowboxdesign.co.uk" target="_blank">Glowbox Design</a> & <a href="http://outlandish.com" target="_blank">Outlandish</a>.</p>
|
||||||
|
<p>Source code available on <a href="https://github.com/cotech/website" target="_blank">GitHub</a>.</p>
|
||||||
|
<p>Hosted by <a href="https://www.webarchitects.co.uk" target="_blank">Webarchitects</a> for CoTech ©2017</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/app.js?ver=4.8'></script>
|
||||||
|
<script type='text/javascript' src='{{ site.github.url }}/wp/wp-includes/js/wp-embed.min.js?ver=4.8'></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
104
about.html
104
about.html
@ -1,72 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: About
|
title: About
|
||||||
heading: About CoTech
|
heading: About CoTech
|
||||||
|
layout: default
|
||||||
---
|
---
|
||||||
<!doctype html>
|
|
||||||
<html lang="en-US">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<!-- TODO this could do with a tidy-up -->
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>{{ page.title }} « Cooperative Technologists</title>
|
|
||||||
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
|
||||||
<link rel='stylesheet' id='oowp_css-css' href='{{ site.github.url }}/app/mu-plugins/oowp/oowp.css?ver=4.8' type='text/css' media='all' />
|
|
||||||
<link rel='stylesheet' id='app-css' href='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/css/app.css?ver=4.8' type='text/css' media='all' />
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/vendor.js?ver=4.8'></script>
|
|
||||||
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-32x32.png" sizes="32x32" />
|
|
||||||
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-192x192.png" sizes="192x192" />
|
|
||||||
<link rel="apple-touch-icon-precomposed" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-180x180.png" />
|
|
||||||
<meta name="msapplication-TileImage" content="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-270x270.png" />
|
|
||||||
<style type="text/css" id="wp-custom-css">
|
|
||||||
section#contact div.row div p a:active,
|
|
||||||
section#contact div.row div p a:focus,
|
|
||||||
section#contact div.row div p a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<link rel="stylesheet" href="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/foundation-icons/foundation-icons.css">
|
|
||||||
<link rel="icon" type="image/x-icon" href="app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">
|
|
||||||
<script type="text/javascript">
|
|
||||||
window.mapboxAccessToken = 'pk.eyJ1IjoiY290ZWNoIiwiYSI6ImNpemgxbzhwODAwMHMzM28zdXF3cGxyYmwifQ.9nPExuEUqwblCCl-6gyFXA';
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<div data-sticky-container style="height: 82.7812px;">
|
|
||||||
|
|
||||||
<div class="top-bar sticky iss-stuck is-at-top" data-sticky data-margin-top=0>
|
|
||||||
<div class="top-bar-title">
|
|
||||||
<strong>
|
|
||||||
<a id="logo" href="/">
|
|
||||||
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">CoTech
|
|
||||||
</a>
|
|
||||||
</strong>
|
|
||||||
<a class="back" href="/">← Go Back</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<div id="page-banner">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-centered small-12 medium-10 large-8 columns">
|
|
||||||
<h2>{{ page.heading }}</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="small-centered small-12 medium-10 large-8 columns">
|
<div class="small-centered small-12 medium-10 large-8 columns">
|
||||||
@ -91,41 +27,3 @@ heading: About CoTech
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="footer-upper">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-12 columns">
|
|
||||||
|
|
||||||
<div class="menu-centered">
|
|
||||||
<ul class="menu">
|
|
||||||
<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>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="footer-lower">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-12 columns">
|
|
||||||
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/coop-logo.png" class="float-center" />
|
|
||||||
<p>Site developed by <a href="http://glowboxdesign.co.uk" target="_blank">Glowbox Design</a> & <a href="http://outlandish.com" target="_blank">Outlandish</a>.</p>
|
|
||||||
<p>Source code available on <a href="https://github.com/cotech/website" target="_blank">GitHub</a>.</p>
|
|
||||||
<p>Hosted by <a href="https://www.webarchitects.co.uk" target="_blank">Webarchitects</a> for CoTech ©2017</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/app.js?ver=4.8'></script>
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/wp/wp-includes/js/wp-embed.min.js?ver=4.8'></script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
104
join.html
104
join.html
@ -1,72 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Join
|
title: Join
|
||||||
heading: Join CoTech
|
heading: Join CoTech
|
||||||
|
layout: default
|
||||||
---
|
---
|
||||||
<!doctype html>
|
|
||||||
<html lang="en-US">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<!-- TODO this could do with a tidy-up -->
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>{{ page.title }} « Cooperative Technologists</title>
|
|
||||||
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
|
||||||
<link rel='stylesheet' id='oowp_css-css' href='{{ site.github.url }}/app/mu-plugins/oowp/oowp.css?ver=4.8' type='text/css' media='all' />
|
|
||||||
<link rel='stylesheet' id='app-css' href='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/css/app.css?ver=4.8' type='text/css' media='all' />
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/vendor.js?ver=4.8'></script>
|
|
||||||
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-32x32.png" sizes="32x32" />
|
|
||||||
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-192x192.png" sizes="192x192" />
|
|
||||||
<link rel="apple-touch-icon-precomposed" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-180x180.png" />
|
|
||||||
<meta name="msapplication-TileImage" content="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-270x270.png" />
|
|
||||||
<style type="text/css" id="wp-custom-css">
|
|
||||||
section#contact div.row div p a:active,
|
|
||||||
section#contact div.row div p a:focus,
|
|
||||||
section#contact div.row div p a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<link rel="stylesheet" href="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/foundation-icons/foundation-icons.css">
|
|
||||||
<link rel="icon" type="image/x-icon" href="app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">
|
|
||||||
<script type="text/javascript">
|
|
||||||
window.mapboxAccessToken = 'pk.eyJ1IjoiY290ZWNoIiwiYSI6ImNpemgxbzhwODAwMHMzM28zdXF3cGxyYmwifQ.9nPExuEUqwblCCl-6gyFXA';
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<div data-sticky-container style="height: 82.7812px;">
|
|
||||||
|
|
||||||
<div class="top-bar sticky iss-stuck is-at-top" data-sticky data-margin-top=0>
|
|
||||||
<div class="top-bar-title">
|
|
||||||
<strong>
|
|
||||||
<a id="logo" href="/">
|
|
||||||
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">CoTech
|
|
||||||
</a>
|
|
||||||
</strong>
|
|
||||||
<a class="back" href="/">← Go Back</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<div id="page-banner">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-centered small-12 medium-10 large-8 columns">
|
|
||||||
<h2>{{ page.heading }}</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="small-centered small-12 medium-10 large-8 columns">
|
<div class="small-centered small-12 medium-10 large-8 columns">
|
||||||
@ -129,41 +65,3 @@ heading: Join CoTech
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="footer-upper">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-12 columns">
|
|
||||||
|
|
||||||
<div class="menu-centered">
|
|
||||||
<ul class="menu">
|
|
||||||
<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>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="footer-lower">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-12 columns">
|
|
||||||
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/coop-logo.png" class="float-center" />
|
|
||||||
<p>Site developed by <a href="http://glowboxdesign.co.uk" target="_blank">Glowbox Design</a> & <a href="http://outlandish.com" target="_blank">Outlandish</a>.</p>
|
|
||||||
<p>Source code available on <a href="https://github.com/cotech/website" target="_blank">GitHub</a>.</p>
|
|
||||||
<p>Hosted by <a href="https://www.webarchitects.co.uk" target="_blank">Webarchitects</a> for CoTech ©2017</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/app.js?ver=4.8'></script>
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/wp/wp-includes/js/wp-embed.min.js?ver=4.8'></script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
104
manifesto.html
104
manifesto.html
@ -1,72 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Manifesto
|
title: Manifesto
|
||||||
heading: Our Manifesto
|
heading: Our Manifesto
|
||||||
|
layout: default
|
||||||
---
|
---
|
||||||
<!doctype html>
|
|
||||||
<html lang="en-US">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<!-- TODO this could do with a tidy-up -->
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>{{ page.title }} « Cooperative Technologists</title>
|
|
||||||
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
|
||||||
<link rel='stylesheet' id='oowp_css-css' href='{{ site.github.url }}/app/mu-plugins/oowp/oowp.css?ver=4.8' type='text/css' media='all' />
|
|
||||||
<link rel='stylesheet' id='app-css' href='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/css/app.css?ver=4.8' type='text/css' media='all' />
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/vendor.js?ver=4.8'></script>
|
|
||||||
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-32x32.png" sizes="32x32" />
|
|
||||||
<link rel="icon" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-192x192.png" sizes="192x192" />
|
|
||||||
<link rel="apple-touch-icon-precomposed" href="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-180x180.png" />
|
|
||||||
<meta name="msapplication-TileImage" content="{{ site.github.url }}/app/uploads/2017/02/cropped-cotech_512x512-270x270.png" />
|
|
||||||
<style type="text/css" id="wp-custom-css">
|
|
||||||
section#contact div.row div p a:active,
|
|
||||||
section#contact div.row div p a:focus,
|
|
||||||
section#contact div.row div p a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<link rel="stylesheet" href="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/foundation-icons/foundation-icons.css">
|
|
||||||
<link rel="icon" type="image/x-icon" href="app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">
|
|
||||||
<script type="text/javascript">
|
|
||||||
window.mapboxAccessToken = 'pk.eyJ1IjoiY290ZWNoIiwiYSI6ImNpemgxbzhwODAwMHMzM28zdXF3cGxyYmwifQ.9nPExuEUqwblCCl-6gyFXA';
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<div data-sticky-container style="height: 82.7812px;">
|
|
||||||
|
|
||||||
<div class="top-bar sticky iss-stuck is-at-top" data-sticky data-margin-top=0>
|
|
||||||
<div class="top-bar-title">
|
|
||||||
<strong>
|
|
||||||
<a id="logo" href="/">
|
|
||||||
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/CoTech-logo.png">CoTech
|
|
||||||
</a>
|
|
||||||
</strong>
|
|
||||||
<a class="back" href="/">← Go Back</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<div id="page-banner">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-centered small-12 medium-10 large-8 columns">
|
|
||||||
<h2>{{ page.heading }}</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="small-centered small-12 medium-10 large-8 columns">
|
<div class="small-centered small-12 medium-10 large-8 columns">
|
||||||
@ -81,41 +17,3 @@ heading: Our Manifesto
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="footer-upper">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-12 columns">
|
|
||||||
|
|
||||||
<div class="menu-centered">
|
|
||||||
<ul class="menu">
|
|
||||||
<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>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="footer-lower">
|
|
||||||
<div class="row">
|
|
||||||
<div class="small-12 columns">
|
|
||||||
<img src="{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/img/coop-logo.png" class="float-center" />
|
|
||||||
<p>Site developed by <a href="http://glowboxdesign.co.uk" target="_blank">Glowbox Design</a> & <a href="http://outlandish.com" target="_blank">Outlandish</a>.</p>
|
|
||||||
<p>Source code available on <a href="https://github.com/cotech/website" target="_blank">GitHub</a>.</p>
|
|
||||||
<p>Hosted by <a href="https://www.webarchitects.co.uk" target="_blank">Webarchitects</a> for CoTech ©2017</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/app.js?ver=4.8'></script>
|
|
||||||
<script type='text/javascript' src='{{ site.github.url }}/wp/wp-includes/js/wp-embed.min.js?ver=4.8'></script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
Loading…
Reference in New Issue
Block a user