forked from galaxykate/tracery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1008 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
30
31
32
33
34
35
36
37
38
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Tracery Demos</title>
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<div id="container">
<div id="content">
<h1>Tracery</h1>
<select id="grammarSelect">
<option value="scifi">Scifi Detective</option>
<option value="conference">New Media Conference</option>
<option value="nightvale">Eternal Nightvale</option>
<option value="poem">Poetry</option>
<option value="neverbar">Neverbar</option>
</select>
<div id="output">
Output
</div>
<div id="grammar">
Grammar
</div>
</div>
</div>
<script src="js/vendor/jquery-1.11.2.min.js"></script>
<script src="js/tracery.min.js"></script>
<script src="js/grammars.js"></script>
<script src="js/app.js"></script>
</body>
</html>