-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>DC Code Browser</title>
<link rel='stylesheet' type='text/css' href='css/style.css' />
<link rel='stylesheet' type='text/css' href='css/site.css' />
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='black' />
<script src='js/lib/fastclick.js'></script>
</head>
<body class='code-browser'>
<div class='head-nav'>
</div>
<div class='pane' id='titles-pane'>
<ul class='items' id='titles'></ul>
</div>
<div class='pane' id='sections-pane'>
<ul class='items' id='sections'></ul>
</div>
<div class='pane content' id='content-pane'>
<div id='section'>
</div>
</div>
<script>
new FastClick(document.body);
</script>
<script src='js/lib/d3.v3.min.js'></script>
<script src='js/browser.js'></script>
</body>
</html>