This repository has been archived by the owner on Dec 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprospective.html
54 lines (54 loc) · 2.26 KB
/
prospective.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href = "assets/css/bootstrap.min.css">
<link rel="stylesheet" href = "assets/css/font-awesome.min.css">
<link rel = "stylesheet" href = "css/global.css">
<script src = "assets/js/jquery.js" onload = "window.$ = window.jQuery = module.exports;"></script>
<script src = "assets/js/bootstrap.js"></script>
<script src = "assets/js/vue.js"></script>
<script src = "js/globals.js"></script>
<script src = "js/jumpstart.js" defer></script>
<style type = "text/css">
textarea {
height: 25vh !important;
}
</style>
<title>Editor</title>
</head>
<body>
<div id = "main">
<navbar preview-page = "prospective"></navbar>
<div class = "container-fluid">
<json-form page = "prospective">
<json-string name = "Section Name" path = "['name']"></json-string>
<json-string name = "Section Lead" path = "['lead']"></json-string>
<h3>Applications</h3>
<json-string name = "Name" path = "['applications']['name']"></json-string>
<json-string name = "Lead" path = "['applications']['lead']"></json-string>
<json-string name = "Button Text" path = "['applications']['application']['buttonText']"></json-string>
<json-string name = "Month" path = "['applications']['application']['month']" help = "This should be abbreviated as it must fit on the button."></json-string>
<json-string name = "Day" path = "['applications']['application']['day']"></json-string>
<json-string name = "Link" path = "['applications']['application']['link']"></json-string>
<json-table
name = "Timeline"
id = "timeline"
path = "['applications']['timeline']"
:columns = "['title', 'subtitle', 'backgroundColor']"
color = "backgroundColor">
</json-table>
<h3>Open House</h3>
<json-string name = "Name" path = "['openHouse']['name']"></json-string>
<json-string name = "Lead" path = "['openHouse']['lead']"></json-string>
<json-string name = "Description" path = "['openHouse']['text']" big = true></json-string>
<json-table
name = "Dates"
help = "The link field is for specifying what will be opened if 'Reserve a seat' is clicked."
path = "['openHouse']['dates']"
:columns = "['name', 'date', 'time', 'link']">
</json-table>
</json-form>
</div>
</div>
</body>
</html>