-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhydra.html
63 lines (53 loc) · 1.99 KB
/
hydra.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en-us">
<head>
<!-- Your Grammar Goes in the <script> tag below: -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>
Page Title
</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text" rel="stylesheet">
<style>
.meta {margin-top: 2em;} body {font-family: "Crimson Text", "Times New Roman", Georgia, serif;font-size:14pt;} hr { border-color:#888;} </style>
</head>
<body>
<div class="container meta">
<div class="row">
<h1 class="col-lg-10 offset-lg-1">
Page Title
</h1>
</div>
<div class="row">
<p class="col-lg-10 offset-lg-1">
Page Description
</p>
</div>
<div class="row">
<p class="col-lg-10 offset-lg-1">
<strong>Current Word Count:</strong> <span id="wordCount">0</span>
</p>
</div>
</div>
<div class="container">
<div class="row">
<form class="col-lg-10 offset-lg-1">
<button type="button" class="btn btn-large btn-success" value="Create a New Story" id="newStory">Create a New Story</button>
<input type="hidden" id="numberOfStories" value="1" />
</form>
</div>
<div class="row">
<div class="col-lg-12"><hr/></div>
</div>
<div class="row">
<div id="story" class="tracery col-lg-10 offset-lg-1" ></div>
</div>
</div>
</div>
<script src="https://cdn.rawgit.com/oncomouse/oncomouse.github.io/9b1cb417/javascripts/tracery/tracery.min.js"></script>
<script src="controls.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>