forked from absence/absence.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 822 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>docTree</title>
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<link type='text/css' rel='stylesheet' href='style.css' />
</head>
<body>
<script>
var panel = document.createElement( 'div' );
panel.id = 'panel'; // for css
document.body.appendChild( panel );
var viewer = document.createElement( 'iframe' );
viewer.id = 'viewer';
document.body.appendChild( viewer );
var appName = 'Absence';
var html = '<h1>Absence</h1><h3>Help with <i>Incomplete Nature</i></h3>';
</script>
<script src='list.js'></script>
<script src='doctree.js'></script>
</body>
<script>
if ( window.location.hash.length > 0 ) {
goToHash();
} else {
goTo('Summary','Overview','Home Page');
}
</script>
</html>