-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (65 loc) · 3.98 KB
/
index.html
File metadata and controls
66 lines (65 loc) · 3.98 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8"></meta>
<link rel="stylesheet" type="text/css" href="skeleton/normalize.css"></link>
<link rel="stylesheet" type="text/css" href="skeleton/skeleton.css"></link>
<link rel="stylesheet" type="text/css" href="index.css"></link>
<title>Book Editor</title>
</head>
<body class="row-box">
<div class="row-box">
<div class="column-box two-columns">
<div class="row-box buttonbar withelement">
<input type="button" id="book_file" value="Open" class="button-primary"></input>
<button id="save" class="button-primary editoraction">Save</button>
</div>
<div class="vscrollable withelement">
<table id="book_list" class="selectable">
</table>
</div>
</div>
<div class="column-box flex-column">
<div class="row-box buttonbar withelement">
<button id="move_first" class="button-primary material-icons editoraction">vertical_align_top</button>
<button id="move_last" class="button-primary material-icons editoraction">vertical_align_bottom</button>
<button id="merge_up" class="button-primary material-icons editoraction">merge_type</button>
<button id="indent_increase" class="button-primary material-icons editoraction">format_indent_increase</button>
<button id="indent_decrease" class="button-primary material-icons editoraction">format_indent_decrease</button>
<button id="show_all" action="show_all" class="button-primary material-icons check-box editoraction">check_box_outline_blank</button>
<label for="save_all" class="check-box">Display Deleted</label>
<div id="message" class="message hide withelement">
</div>
</div>
<div class="row-box flex-column">
<div class="one-half-columns fullheight">
<div class="column-box book_toc fullheight flex-column">
<div class="flex-column row-box vscrollable withelement">
<table id="book_toc" class="selectable flex-column">
</table>
</div>
</div>
</div>
<div class="column-box">
<div class="column-box withelement noflex">
<div class="row-box"><label class="two columns">Title:</label><input type="text" id="book_title" class="metadata"></input></div>
<div class="row-box"><label class="two columns">Author:</label><input type="text" id="book_author" class="metadata"></input></div>
<div class="row-box"><label class="two columns">Date:</label><input type="date" id="book_date" class="metadata"></input></div>
<div class="row-box"><label class="two columns">Publisher:</label><input type="text" id="book_publisher" class="metadata"></input></div>
<div class="row-box"><label class="two columns">Tags:</label><input type="text" id="book_tags" class="metadata"></input></div>
<div class="row-box"><label class="two columns">Language:</label><input type="text" id="book_language" class="metadata" value="zho"></input></div>
</div>
<div class="flex-column vscrollable">
<div id="preview_container" class="preview_container withelement">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>