forked from BrownCLPS/LingView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (25 loc) · 880 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tukanoan Languages Web Interface</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700">
<link rel="icon" href="images/favicon.ico">
</head>
<body>
<div id="main"></div>
<script src="build/bundle.js"></script>
<script>
// This code loads the YouTube IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var youTubeIframeAPIReady = false;
function onYouTubeIframeAPIReady() {
youTubeIframeAPIReady = true;
}
</script>
</body>
</html>