-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>Hello World!</title>
</head>
<body>
<div class="top">
<img class="header" src="fig/raster/header.png" alt="headerimage">
<div class="buttons">
<button data-bind="click: $root.newNote">New</button>
<button data-bind="click: $root.makePdf">Export</button>
</div>
<div class="buttons">
<button data-bind="click: $root.saveContent">Save</button>
<button data-bind="click: $root.loadContent">Load</button>
</div>
</div>
<div class="contents">
<div class="content-header">
<h2>Notes</h2> <button type="button" data-bind="click: $root.addContent">Add</button>
</div>
<table>
<!-- foreach contents -->
<tbody data-bind="foreach: contents">
<tr style="width:100%;">
<td class="subject"><input data-bind="textInput: subject" maxlength="30"></td>
<td class="content"><input data-bind="textInput: content" maxlength="140"></td>
</tr>
</tbody>
</table>
</div>
<div class="summary">
Summary: <input maxlength="140" class="content" data-bind="textInput: summary">
</div>
<script src="js/knockout-3.4.2.js"></script>
<script src="js/app.js"></script>
</body>
</html>