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 pathhome.html
50 lines (50 loc) · 2.23 KB
/
home.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
<!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>
<script>
function openGlyphPage() {
require('opn')('http://getbootstrap.com/components/#glyphicons');
}
</script>
<title>Editor</title>
</head>
<body>
<div id = "main">
<navbar preview-page = ""></navbar>
<div class = "container-fluid">
<json-form page = "index">
<json-string name = "Name" id = "name" path = "['name']"></json-string>
<json-string name = "Phone Number" path = "['phoneNumber']"></json-string>
<json-repeat name = "Qualities" :path = "['qualities']">
<template scope = "parent">
<json-string name = "Name" :path = "`['qualities'][${parent.index}]['name']`"></json-string>
<json-string name = "Description" :path = "`['qualities'][${parent.index}]['description']`" big = "true"></json-string>
<json-color name = "Background Color" :path = "`['qualities'][${parent.index}]['backgroundColor']`"></json-color>
<json-string name = "Glyph" :path = "`['qualities'][${parent.index}]['glyph']`" help = "Click <a onclick = 'openGlyphPage()'>here</a> to view more glyphs (icons)."></json-string>
</template>
</json-repeat>
<json-repeat name = "Gallery" :path = "['gallery']">
<template scope = "parent">
<json-string name = "External Link" :path = "`['gallery'][${parent.index}]['link']`" help = "This is the page that is opened when the image is clicked."></json-string>
<json-string name = "Image Link" :path = "`['gallery'][${parent.index}]['src']`" help = "This is the actual link to the image."></json-string>
<json-string name = "Caption" :path = "`['gallery'][${parent.index}]['caption']`" big = "true"></json-string>
</template>
</json-repeat>
</json-form>
</div>
</div>
</body>
</html>