-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
47 lines (41 loc) · 1.73 KB
/
template.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
<!DOCTYPE html>
<html>
<head>
<title>Tweet2Learn! TEANGA</title>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.9.0/build/reset/reset-min.css">
<link rel="stylesheet" href="/resources/tweet2learn.css" type="text/css" media="screen, mobile" charset="utf-8"/>
<link rel="stylesheet" href="/resources/jquery-ui-1.10.1.custom.min.css" type="text/css" media="screen, mobile" title="smoothness" />
<link rel="shortcut icon" href="/resources/favicon.ico" type="image/x-icon"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Kevin Scannell"/>
<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
<!-- <meta name="apple-mobile-web-app-capable" content="yes" /> -->
<link rel="apple-touch-icon" href="/resources/t2l-icon.jpg"/>
<link rel="apple-touch-startup-image" href="/resources/t2l-startup.jpg" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
for (var i=0; i<ACCORDIONS; i++) {
$("#acc"+i).accordion({
active:".ui-accordion-left",
alwaysOpen: false,
autoheight: false,
header: 'a.acc'+i,
clearStyle: true,
active: false,
collapsible: true,
heightStyle: "content",
animated: 'bounceslide'
});
}
$("tr:even").css("background-color", "#FFFFFF");
$("tr:odd").css("background-color", "#F0F0F0");
$("body").show();
});
</script>
</head>
<body>
</body>
</html>