-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdefault.html
More file actions
50 lines (49 loc) · 2.1 KB
/
Copy pathdefault.html
File metadata and controls
50 lines (49 loc) · 2.1 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
<link rel="stylesheet" href="{{ site.baseurl }}/css/screen.css">
<link rel="icon" type="image/png" href="{{ site.baseurl }}/favicon.ico">
<script src="{{ site.baseurl }}/assets/redirect.js"></script>
</head>
<body>
<header>
<div class="container">
{% include navigation.html %}
</div>
</header>
{{ content }}
<footer>
<div class="container" style="margin-left: auto; margin-right: auto;">
<div class="text editable" style="line-height: 2em; text-align: center;">
Path of Building Community is a fork of the original Path of Building by Openarl. It is now actively maintained by Path of Exile community members.<br/>
Features not originally present have been added, new mechanics are getting supported regularly, and any work on the original is integrated as well.<br/>
Want to join us? We would be glad to have you! Take a look <a href="https://github.com/PathOfBuildingCommunity/PathOfBuilding/blob/master/CONTRIBUTING.md">here</a> to see how you can participate in the project.
</div>
<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"><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>