5
0
mirror of https://git.coop/cotech/website.git synced 2024-07-06 04:34:13 +00:00
cotech-website/_layouts/default.html
James Mead be5ffd3f53 Remove unused Wordpress-specific JS
This code seems to be related to this Wordpress feature [1] which only
seems relevant where users are adding e.g. comments to a site.

[1]: https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/
2017-07-01 15:12:53 +01:00

44 lines
986 B
HTML

<!doctype html>
<html lang="en-US">
{% include head.html %}
<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="/">&#8592; 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>
{% 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>