-
Notifications
You must be signed in to change notification settings - Fork 2
/
default.html
57 lines (53 loc) · 2.07 KB
/
default.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
{% feed_meta %}
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/screen.css">
<link rel="icon" type="image/png" href="{{ site.baseurl }}/assets/images/favicon.png">
{% if jekyll.environment == 'production' and site.google_analytics_key != '' %}
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', '{{ site.google_analytics_key }}', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
{% endif %}
</head>
<body>
<header>
<div class="container">
<div class="company-name"><a href="{{ site.baseurl }}/"><img src="{{ site.baseurl }}/assets/images/Squaredcircle_white_text.svg" alt="OpenFE Logo" width="95" height="33" /></a></div>
{% include navigation.html %}
</div>
</header>
{{ content }}
<footer>
<div class="container">
<p class="editor-link"><a href="cloudcannon:collections/_data/footer.yml" class="btn"><strong>✎</strong> Edit footer</a></p>
<div class="footer-columns">
{% for column in site.data.footer %}
<ul class="footer-links">
{% for link in column.links %}
<li><a {% if link.new_window %}target="_blank"{% endif %} href="{% include relative-src.html src=link.link %}" {% if link.social_icon %}class="{{ link.social_icon }}-icon"{% endif %}>
{% if link.social_icon %}
{% include social-icon.html icon=link.social_icon %}
{% endif %}
{{ link.name }}</a></li>
{% endfor %}
</ul>
{% endfor %}
</div>
<p class="copyright">© {{ site.time | date: '%Y' }} {{ site.copyright }} • <a href="https://cloudcannon.com/">Template by CloudCannon</a></p>
</div>
</footer>
<script>
document.getElementById("open-nav").onclick = function () {
document.body.classList.toggle("nav-open");
return false;
};
</script>
</body>
</html>