-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (46 loc) · 1.54 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
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<script>
window.lconfig = {
showAppTitle: false,
showHeader: true,
docTitle: 'Formio.js Client Demos',
filename: 'docs',
firstNodeAsTitle: false,
baseMode: 't',
viewTypes: [
{name: 'Outline', type: 't'},
{name: 'Inline', type: 'a'},
{name: 'Graphic Tree', type: 'd'},
{name: 'Dendrogram', type: 'z'},
{name: 'Nested Menu', type: 'n'}
],
githubRibbon: {
text: 'Fork me on GitHub',
linkUrl: 'https://github.com/kaleguy/formiojs-client',
fixed: true
}
}
</script>
<meta charset=utf-8>
<title>Formio Form Renderer Demo Project</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/static/css/app.css" rel=stylesheet>
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed" rel="stylesheet">
</head>
<body>
<div id=app></div>
<script type=text/javascript src=https://cdn.jsdelivr.net/npm/[email protected]/dist/static/js/manifest.js></script>
<script type=text/javascript src=https://cdn.jsdelivr.net/npm/[email protected]/dist/static/js/vendor.js></script>
<script type=text/javascript src=https://cdn.jsdelivr.net/npm/[email protected]/dist/static/js/app.js></script>
</body>
<style type="text/css">
#app {
font-family: 'Roboto', sans-serif;
}
.treeviewer .left-pane {
font-family: 'Roboto Condensed', sans-serif;
padding-top: 20px;
}
</style>
</html>