-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.81 KB
/
index.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
<!DOCTYPE html>
<!--
NanoPlay Website
Copyright (C) Subnodal Technologies. All Rights Reserved.
https://nanoplay.subnodal.com
Licenced by the Subnodal Open-Source Licence, which can be found at LICENCE.md.
-->
<html>
<head>
<title>NanoPlay</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="/media/square.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca&family=Overpass+Mono&family=Material+Icons&display=swap">
<link rel="stylesheet" href="/style.css">
<script src="https://cdn.subnodal.com/lib/submodules.min.js"></script>
<script src="https://cdn.subnodal.com/lib/subelements.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-functions.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-analytics.js"></script>
<script src="/models/nav.js"></script>
<script src="/script.js"></script>
<script src="/resources.js"></script>
</head>
<body hidden>
<nav s-import="/models/nav.html"></nav>
<main>
<p>Our website is still in development, but you can still check it out! If you have a Subnodal account, you can visit the <a href="/dashboard">Dashboard</a> to get coding.</p>
</main>
<footer s-import="/models/footer.html"></footer>
</body>
</html>