This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
64 lines (59 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AniTV Schedule</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/bootstrap-app.css" />
<!-- JS -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.localize.js"></script>
<script type="text/javascript" src="assets/js/anitv-schedule.js"></script>
<script type="text/javascript" src="assets/js/clock.js"></script>
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="#">AniTV Schedule</a>
<ul class="nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="api.html" data-view="api">API</a></li>
<li><a href="manage.html" data-view="manage">Manage</a></li>
<li><a href="history.html" data-view="history">History</a></li>
</ul>
<p class="pull-right" id="clock"></p>
</div>
</div>
</div>
<div class="container">
<div class="content" id="view">
<div class="page-header">
<h1>Schedule <small>watch and view shows</small></h1>
</div>
<div class="row">
<table class="zebra-striped" id="schedule">
<thead>
<tr>
<th class="header"></th>
<th class="header text-align-left">Program</th>
<th class="header">Episode #</th>
<th class="header">Station</th>
<th class="header">Broadcast Time</th>
<th class="header">ETA</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<footer>
<p><a href="https://github.com/SEPTiCORE/anitv-schedule" title="GitHub Repository">AniTV Schedule 0.2.0</a> © TEAM SEPTiCORE 2011</p>
</footer>
</div>
</body>
</html>