-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (33 loc) · 1.13 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>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>DafRoulette!</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div id="container">
<div id="videos">
<video id="localVideo" class="flippedVideo" autoplay muted></video>
<video id="remoteVideo" autoplay poster="/img/loading.png"></video>
<div id="buttonContainer"></div>
<p>
DafRoulette is an experimental project from Sefaria to match you with random partners for studying daf yomi.
</p>
<p>
There are currently <#NUMBER> chevrutas studying.
</p>
<p>
Questions? Email <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div id="iframeContainer">
</div>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
<script src="js/main.js"></script>
</body>
</html>