-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.48 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>CouchEver</title>
<link rel="stylesheet" href="main.css" type="text/css">
<script src="/_utils/script/json2.js"></script>
<script src="/_utils/script/jquery.js"></script>
<script src="/_utils/script/jquery.couch.js"></script>
<script src="mustache.js"></script>
<script src="form.js"></script>
<script src="template.js"></script>
<script src="couchever.js"></script>
<script type="text/javascript">
$(document).ready(function() {
init();
});
</script>
</head>
<body>
<div id="wrapper">
<div id="hd">
<div id="hdTitle">CouchEver</div>
<div id="hdMenu">
<a href="#" id="BtDelNote">Del</a>
<a href="#" id="BtEditNote">Edit</a>
<a href="#" id="BtAddNote">New</a>
</div>
</div>
<div id="sb">
<div id="sbSearchHead">Search</div>
<div id="sbSearch"></div>
<div id="sbTagsHead">Tags</div>
<div id="sbTags"><ul id="TagList"/></div>
<div id="sbListHead">Notes</br>
<div id="sbList"><ul id="NoteList"/></div>
</div>
<div id="ct">
<div id="splash">
<h2>Welcome to CouchEver</h2>
<p>a Couchdb application who's emulating the concept of the very Nice Evernote</p>
</div>
</div>
<div id="ft">
<span id="msg"></span>
</div>
</div>
</body>
</html>