-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
71 lines (61 loc) · 2.31 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Async's Fishcotheque</title>
<!--
Async's Fishcotheque
- [repo] https://github.com/asyncjs/Fishcotheque
- [demo] https://fishcotheque.asyncjs.com
- [about] https://asyncjs.com/fishcotheque/
-->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@asyncjs">
<meta name="twitter:creator" content="@asyncjs">
<meta property="og:url" content="https://fishcotheque.asyncjs.com">
<meta property="og:title" content="Async's Fishcotheque">
<meta property="og:description" content="A collaborative canvas of weird and wonderful animated sea creatures to live in our Async Fishcotheque">
<meta property="og:image" content="/images/card.png">
<meta name="description" content="A collaborative canvas of weird and wonderful animated sea creatures to live in our Async Fishcotheque">
<link rel="icon" type="image/png" href="/images/favicon.png" sizes="32x32">
<link rel="stylesheet" href="./css/global.css">
</head>
<body>
<div id="fishcotheque">
<div id="info">
<h1>Async's Fishcotheque</h2>
<p>Brighton Digital Festival 2016</p>
<ul>
<li>
<a href="https://github.com/asyncjs/Fishcotheque">Code</a>
</li>
<li>
<a href="https://asyncjs.com/fishcotheque/">About</a>
</li>
</ul>
</div>
</div>
<script src="javascript/lib/getscript.js"></script>
<script>
getScript(
// Libraries, independent of each another
[
"lib/jquery.js",
"lib/underscore.js",
"lib/raphael.min.js",
"lib/broadcast.js"
],
// Core Fishcotheque script
"fishcotheque.js?v1",
// Sensing other creatures
"awareness.js?v1",
// Creatures are added to creatures.js
"creatures.js?v1",
// Optional callback function to execute when all files completely loaded
// function(){},
// Load options (can include `noCache:true` to prevent browser caching, while debugging)
{path:"javascript/"}
);
</script>
</body>
</html>