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
/
banners.html
53 lines (53 loc) · 2.71 KB
/
banners.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
<!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 = ""></navbar>
<div class = "container-fluid">
<p>The banner field should link to an image. Make sure the image is high resolution so that it doesn't look pixelated when the page is visited.</p>
<p>The title is the main text on the banner, while the lead is the subtitle under the title.</p>
<json-form>
<h3>Home</h3>
<json-string name = "Banner" path = "['index']['banners']"></json-string>
<json-string name = "Title" path = "['index']['name']"></json-string>
<json-string name = "Lead" path = "['index']['lead']"></json-string>
<h3>Information</h3>
<json-string name = "Banner" path = "['information']['banner']"></json-string>
<json-string name = "Title" path = "['information']['name']"></json-string>
<json-string name = "Lead" path = "['information']['lead']"></json-string>
<h3>Academics</h3>
<json-string name = "Banner" path = "['academics']['banner']"></json-string>
<json-string name = "Title" path = "['academics']['name']"></json-string>
<json-string name = "Lead" path = "['academics']['lead']"></json-string>
<h3>Counseling</h3>
<json-string name = "Banner" path = "['counseling']['banner']"></json-string>
<json-string name = "Title" path = "['counseling']['name']"></json-string>
<json-string name = "Lead" path = "['counseling']['lead']"></json-string>
<h3>Extracurriculars</h3>
<json-string name = "Banner" path = "['extracurriculars']['banner']"></json-string>
<json-string name = "Title" path = "['extracurriculars']['name']"></json-string>
<json-string name = "Lead" path = "['extracurriculars']['lead']"></json-string>
<h3>Prospective</h3>
<json-string name = "Banner" path = "['prospective']['banner']"></json-string>
<json-string name = "Title" path = "['prospective']['name']"></json-string>
<json-string name = "Lead" path = "['prospective']['lead']"></json-string>
<h3>Alumni</h3>
<json-string name = "Banner" path = "['alumni']['banner']"></json-string>
<json-string name = "Title" path = "['alumni']['name']"></json-string>
<json-string name = "Lead" path = "['alumni']['lead']"></json-string>
</json-form>
</div>
</div>
</body>
</html>