-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (94 loc) · 3.39 KB
/
index.html
File metadata and controls
106 lines (94 loc) · 3.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>MuSNet Project - Home</title>
<meta name=description content="The MuSNet project is an ecosystem for low latency Networked Music Performances">
<meta name=author content="Rodolfo Cangiotti">
<link rel="stylesheet" href="styles/master.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/icons.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="header-bar">
<div class="site-logo">
<a href="index.html" alt="MuSNet Project">
<span class="link-text current-page">MuSNet Project</span>
</a>
</div>
<div class="nav-bar">
<nav>
<ul>
<li>
<a href="network.html" alt="Network">
<span class="link-text">Network</span>
</a>
</li>
<li>
<a href="https://forms.gle/SuoLqSvU23Kzyd4p6" alt="Contribute">
<span class="link-text">Contribute</span>
</a>
</li>
<li>
<a href="https://github.com/musnetproject" alt="View on GitHub">
<img src="images/github-32px.png"/ alt="GitHub Logo">
<span class="link-text">View on GitHub</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<section class="landing-content">
<div class="landing-column">
<div class="landing-cell">
<div class="headers">
<h1>MuSNet Project</h1>
<h3>A little ecosystem for low latency Networked Music Performances</h3>
</div>
<div class="rectangle">
<a href="https://github.com/musnetproject">
<span class="link-text">Get it</span>
</a>
</div>
</div>
</div>
</section>
<footer>
<div class="footer-bar">
<div class="footer-links">
<ul>
<li>
<a class="fa fa-facebook" href="https://www.facebook.com/hashtag/musnetproject" alt="MuSNet on Facebook"></a>
</li>
<li>
<a class="fa fa-twitter" href="https://twitter.com/hashtag/musnetproject" alt="MuSNet on Twitter"></a>
</li>
<li>
<a class="fa fa-instagram" href="https://www.instagram.com/explore/tags/musnetproject/" alt="MuSNet on Instagram"></a>
</li>
</ul>
</div>
<div class="copyright">
<p>
© <time id="year"></time>, Rodolfo Cangiotti. Some rights reserved.
</p>
<p>
The MuSNet project is distributed under the terms of the AGPL license. For more information, <a href="mailto:musnetproject@outlook.com">contact us</a>.
</p>
</div>
</div>
</footer>
<script type="text/javascript" src="scripts/main.js"></script>
<script type="text/javascript">
$(document).ready(function() {
setCopyrightYear();
});
</script>
</body>
</html>