-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (85 loc) · 3.47 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mark 42</title>
<link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!--
<script type="text/javascript" src="https://unpkg.com/grapesjs"></script>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/grapesjs/dist/css/grapes.min.css">
<script type="text/javascript" src="https://unpkg.com/grapesjs-blocks-basic"></script>
-->
<script type="text/javascript" src="/assets/grapes.js"></script>
<link rel="stylesheet" type="text/css" href="/assets/grapes.min.css">
<script type="text/javascript" src="/assets/grapesjs-blocks-basic.min.js"></script>
<!--
<script src="https://unpkg.com/@samsquatch/[email protected]/dist/widget-components.js" type="application/javascript"></script>
<script src="https://unpkg.com/@samsquatch/[email protected]/dist/widget-components/widget-components.khxpevgb.js" type="module" crossorigin="true" data-resources-url="https://unpkg.com/@samsquatch/[email protected]/dist/widget-components/" data-namespace="widget-components"></script>
-->
<style>
#gjs {
border: none;
}
/* Theming */
/* Primary color for the background */
.gjs-one-bg {
background-color: #f6f7f9; /*background-color: #78366a;*/
}
/* Secondary color for the text color */
.gjs-two-color,
.gjs-color-warn, .gjs-sm-sector .gjs-sm-field input, .gjs-clm-tags .gjs-sm-field input, .gjs-sm-sector .gjs-clm-field input, .gjs-clm-tags .gjs-clm-field input, .gjs-sm-sector .gjs-sm-field select, .gjs-clm-tags .gjs-sm-field select, .gjs-sm-sector .gjs-clm-field select, .gjs-clm-tags .gjs-clm-field select {
color: #464973;
}
/* Tertiary color for the background */
.gjs-three-bg {
background-color: #f6f7f9;
}
/* Quaternary color for the text color */
.gjs-four-color,
.gjs-four-color-h:hover {
color: #464973;
}
*/
</style>
<!--
TODO: make ionic components standalone
adding ionic component messes up other components, ion-button didn't render correctly
<link href="https://unpkg.com/@ionic/[email protected]/css/ionic.bundle.css" rel="stylesheet">
<script src="https://unpkg.com/@ionic/[email protected]/dist/ionic.js"></script>
Simplajs.org: editable html, cms
-->
<!-- couldn't get css to apply:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="/assets/smart-styles/smart.default.css" type="text/css" />
<script type="text/javascript" src="/assets/smart.core.js"></script>
<script type="text/javascript" src="https://www.oracle.com/webfolder/technetwork/jet/oj/v7.0.1/3rdparty/webcomponents/custom-elements.min.js"></script>
-->
<script src="/assets/apploader.js"></script>
<script defer>
window.loadMicroApp( {URL:'/components/core/app-root.js', rootPath:'/components/'} )
.then( ( appName ) => {
console.log('loaded app name:', appName)
})
window.addEventListener('DOMContentLoaded', (event) => {
console.log('DOM fully loaded and parsed');
});
</script>
<style>
html,
body,
#approot,
.page {
height: 100%;
}
body, #approot {
overflow: hidden;
}
</style>
</head>
<body class="avenir">
<app-root id="approot"></app-root>
</body>
</html>