mirror of
https://git.coop/cotech/website.git
synced 2024-11-05 16:08:44 +00:00
31 lines
513 B
HTML
31 lines
513 B
HTML
<!doctype html>
|
|
<html lang="en-US">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% include header.html %}
|
|
|
|
<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>
|
|
|
|
|
|
{% include footer.html %}
|
|
|
|
<script type='text/javascript' src='{{ site.github.url }}/app/themes/coop-tech-oowp-theme/public/js/app.js?ver=4.8'></script>
|
|
</body>
|
|
|
|
</html>
|