forked from xinxinw1/writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>WriTeX</title>
<link href="src/main.css" rel="stylesheet" />
<link rel="icon" href="src/w.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="src/main.js"></script>
</head>
<body>
<h1>WriTeX</h1>
<div id="subtitle1">Write and Share Beautiful LaTeX Notes</div>
<div id="subtitle2">Without Learning LaTeX.</div>
<div id="buttons">
<button id="button1" onclick="window.location='file.html';">Create New Document</button>
</div>
<table id="files">
<tr>
<th>Filename</th>
<th>Delete</th>
</tr>
{{#files}}
<tr>
<td><a href="src/file.html?file={{encodedFile}}">{{file}}</a></td>
<td>
<form action="delete" method="post">
<input type="hidden" name="filename" value="{{file}}">
<input type="image" src="delete.png" width="32" height="32" value="Delete">
</form>
</td>
</tr>
{{/files}}
</table>
</body>
</html>