-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
32 lines (29 loc) · 913 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
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Tin Can Verbs</title>
<link rel="stylesheet" href="css/main.css" type="text/css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<script data-main="verbs" src="lib/require-jquery.js"></script>
</head>
<body>
<script type="text/html" id="verb-template">
<div class='list{= if(deprecated) { =} deprecated{= } =}' rel="#{{hidden}}">
<h3>{{uri}}</h3>
{= if(deprecated) { =}<h4>deprecated</h4>{= } =}
<div>
{{description}}
</div>
</div>
<div id="{{hidden}}" class="overlay{= if(deprecated) { =} deprecated{= } =}">
<h3>{{uri}}</h3>
<div>
{{description}}
</div>
</div>
</script>
<div id="container"></div>
</body>
</html>