-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·50 lines (33 loc) · 1.37 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
<!doctype html>
<html>
<head>
<title>The Nexus TV Titler</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="resources/normalize.css" rel="stylesheet" media="screen" />
<link rel="stylesheet" href="resources/style.css" />
<script type="text/javascript" src="resources/mootools-core-1.5.0-full-nocompat-yc.js"></script>
<script type="text/javascript" src="resources/mootools-more-1.5.0.js"></script>
<script type="text/javascript" src="resources/app.js"></script>
<script type="text/javascript">
window.addEvent('domready', function(){
var ryan = new Orchestrator('input-panel', 'output-panel');
});
</script>
</head>
<body>
<h1>Infinite Recursion</h1>
<div class="masthead">
<div id="input-panel"></div>
</div>
<div class="container">
<div id="output-panel" class="hidden"></div>
</div>
<footer id="footer">
<div class="footer-wrapper">
<p>Please read the developer notes on <a href="https://github.com/ryanmr/tntv-titler">Github</a> for updates on the automated title tool.</p>
<p class="source-org copyright">© 2038 And Prior ▪ <a href="http://thenexus.tv">The Nexus</a> ▪ <a href="http://ryanrampersad.com/?titler">Ryan Rampersad</a> ▪ <a href="#input-panel">Top</a></p>
</div>
</footer>
</body>
</html>