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 pathresources.html
58 lines (58 loc) · 2.2 KB
/
resources.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
<!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>
<title>Editor</title>
</head>
<body>
<div id = "main">
<navbar preview-page = "information#resources"></navbar>
<div class = "container-fluid">
<json-form page = "information">
<json-string name = "Section Name" path = "['resources']['name']"></json-string>
<json-table
name = "Resources"
path = "['resources']['resources']"
:columns = "['url', 'name', 'description']">
</json-table>
<h3>Student Council</h3>
<h4>Grade 9</h4>
<json-string name = "Grade Name" path = "['resources']['studentCouncil']['grades'][0]['name']"></json-string>
<json-table
name = "Resources"
path = "['resources']['studentCouncil']['grades'][0]['resources']"
:columns = "['url', 'name', 'description']">
</json-table>
<h4>Grade 10</h4>
<json-string name = "Grade Name" path = "['resources']['studentCouncil']['grades'][1]['name']"></json-string>
<json-table
name = "Resources"
path = "['resources']['studentCouncil']['grades'][1]['resources']"
:columns = "['url', 'name', 'description']">
</json-table>
<h4>Grade 11</h4>
<json-string name = "Grade Name" path = "['resources']['studentCouncil']['grades'][2]['name']"></json-string>
<json-table
name = "Resources"
path = "['resources']['studentCouncil']['grades'][2]['resources']"
:columns = "['url', 'name', 'description']">
</json-table>
<h4>Grade 12</h4>
<json-string name = "Grade Name" path = "['resources']['studentCouncil']['grades'][3]['name']"></json-string>
<json-table
name = "Resources"
path = "['resources']['studentCouncil']['grades'][3]['resources']"
:columns = "['url', 'name', 'description']">
</json-table>
</json-form>
</div>
</div>
</body>
</html>