-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (34 loc) · 1.64 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
42
<!DOCTYPE html>
<html>
<head>
<title>Story Map Journal generator</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link type="image/ico" rel="shortcut icon" href="//resources.esri.com/favicon.ico">
<link type="image/ico" rel="icon" href="//resources.esri.com/favicon.ico">
<link rel="stylesheet" href="lib/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="app/app.css">
</head>
<body>
<h2>Story Map Journal generator</h2>
<p><a href="https://github.com/glazou/story-map-journal-generator">GitHub project page</a></p>
<textarea id="json-data">Loading...</textarea>
<div id="buttons-container">
<button type="button" class="btn btn-primary hide" id="generate-map-journal"></button>
<button type="button" class="btn btn-success hide" id="open-map-journal"></button>
<div class="progress hide">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%">
<span class="sr-only">45% Complete</span>
</div>
</div>
</div>
<div id="errormsgcontainer" class="alert alert-danger hide" role="alert">
<span class="sr-only">Error:</span>
<span class="errormsg">Enter a valid email address</span>
</div>
<script type="text/javascript" src="lib/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="app/app.js"></script>
</body>
</html>