forked from eormal/magnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
38 lines (24 loc) · 965 Bytes
/
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
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{% include head.html %}
<body>
{% include header.html %}
<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main>
{% include footer.html %}
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="{{ site.baseurl }}/js/bootstrap.min.js"></script>
<!-- clipboard.js -->
<script src="{{ site.baseurl }}/js/clipboard.min.js"></script>
<!-- kudosplease-min.js -->
<script src="{{ site.baseurl }}/js/kudosplease-min.js"></script>
<!-- Include the latest version of WebTorrent -->
<script src="https://cdn.jsdelivr.net/webtorrent/latest/webtorrent.min.js"></script>
<!-- `browserify main.js -o bundle.js` -->
<script src="{{ site.baseurl }}/js/bundle.js"></script>
</body>
</html>