This repository was archived by the owner on Sep 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.template.html
More file actions
48 lines (44 loc) · 1.49 KB
/
index.template.html
File metadata and controls
48 lines (44 loc) · 1.49 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
<!DOCTYPE html>
<html>
<!-- INFO -->
<head>
<title><!-- TITLE --></title>
<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="story.js"></script>
<script>
$(function () {
$("#questkit-output").questkit({input: "#questkit-input"});
});
</script>
<link rel="stylesheet" href="bootstrap.min.css"/>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand"><!-- TITLE --></span>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Restart</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div id="questkit-output">
</div>
<div class="form-group">
<input id="questkit-input" class="form-control" placeholder="Type here..." />
</div>
</div>
</body>
</html>