forked from davidsansome/babbledrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 863 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="static/index.css" />
<script language="javascript" src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js"></script>
<script language="javascript" src="static/data.js"></script>
<script language="javascript" src="static/index.js"></script>
<title>babbledrive</title>
</head>
<body>
<div id="header">
<div id="contentheader"></div>
<div id="links">
<a href="static/welcome.html" target="contentframe">welcome</a>
<a href="https://github.com/davidsansome/babbledrive">source</a>
</div>
</div>
<div id="sidebar">
<input id="search" type="text" autocomplete="off" placeholder="search"></input>
<div id="searchresults"></div>
</div>
<div id="content">
<iframe name="contentframe" id="contentframe" src="static/welcome.html"></iframe>
</div>
</body>
</html>