-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.php
153 lines (151 loc) · 4.66 KB
/
index2.php
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
// include config which is used to derive site state
if (file_exists('config.php')) {
include_once 'config.php';
$HAXSiteConfig = $GLOBALS["HAXSiteConfig"];
}
?>
<!DOCTYPE html>
<html lang="<?php print $HAXSiteConfig->getLanguage(); ?>">
<head>
<?php print $HAXSiteConfig->getBaseTag(); ?>
<?php print $HAXSiteConfig->getSiteMetadata($HAXSiteConfig->page); ?>
<?php print $HAXSiteConfig->getServiceWorkerScript(null, FALSE, $HAXSiteConfig->getServiceWorkerStatus()); ?>
<style>
body {
margin: 0;
min-height: 98vh;
}
.use-modern-browser a {
font-size: 22px;
}
.use-modern-browser {
font-size: 22px;
text-align: center;
width: 100%;
}
</style>
<style id="loadingstyles">
haxcms-site-builder {
display: block;
}
body[no-js] haxcms-site-builder {
display: none !important;
}
#loading {
background-color: white;
bottom: 0px;
left: 0px;
opacity: 1;
position: absolute;
right: 0px;
top: 0px;
transition: all linear 300ms;
-webkit-transition: all linear 300ms;
z-index: 99999999;
}
#loading.loaded {
animation: fade-out .7s ease-in-out;
animation-fill-mode: forwards;
}
#loading div.messaging {
color: rgba(255,255,255, 0.7);
font-family: Roboto;
left: 0px;
margin-top: -75px;
position: absolute;
right: 0px;
text-align: center;
top: 50%;
transform: translateY(-50%);
}
.progress-line,
.progress-line:before {
height: 8px;
width: 100%;
margin: auto;
}
.progress-line {
background-color: rgba(0,0,0, 0.05);
display: -webkit-flex;
display: flex;
width: 30vw;
}
.progress-line:before {
background-color: <?php print $HAXSiteConfig->color;?>;
content: '';
animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes running-progress {
0% {
margin-left: 0px;
margin-right: 100%;
}
50% {
margin-left: 25%;
margin-right: 0%;
}
100% {
margin-left: 100%;
margin-right: 0;
}
}
@keyframes fade-out {
0% {
opacity: 1;
}
99% {
opacity: 0;
}
100% {
opacity: 0;
}
}
</style>
<script id="loadingscript">
window.addEventListener('haxcms-ready', function(e) {
// give the web components a second to build
setTimeout(function() {
document.querySelector('#loading').classList.add('loaded');
setTimeout(function() {
document.querySelector('#loading').parentNode.removeChild(document.querySelector('#loading'));
document.querySelector('#loadingstyles').parentNode.removeChild(document.querySelector('#loadingstyles'));
document.querySelector('#loadingscript').parentNode.removeChild(document.querySelector('#loadingscript'));
}, 600);
}, 300);
});
</script>
</head>
<body no-js <?php print $HAXSiteConfig->getSitePageAttributes();?>>
<div id="loading">
<div class="messaging">
<div class="progress-line"></div>
<h1 role="alert" aria-busy="true">Loading <?php print $HAXSiteConfig->name; ?>..</h1>
</div>
</div>
<haxcms-site-builder id="site" file="site.json<?php print $HAXSiteConfig->cacheBusterHash();?>">
<?php print $HAXSiteConfig->getPageContent($HAXSiteConfig->page); ?>
</haxcms-site-builder>
<div id="haxcmsoutdatedfallback">
<div id="haxcmsoutdatedfallbacksuperold">
<iframe id="outline" style="width:18%;float:left;height:90vh;padding:0;margin:0;" name="outline" id="frame1"
src="legacy-outline.html" loading="lazy"></iframe>
<iframe id="content" style="width:80%;float:left;height:90vh;padding:0;margin:0;" name="content" id="frame2" src="" loading="lazy"></iframe>
<div class="use-modern-browser">Please use a modern browser to
view our website correctly. <a href="http://outdatedbrowser.com/">Update my browser now</a></div>
</div>
</div>
<script>
<?php
// support for local dev overrides of where microservices / other JS comes from
if (file_exists('../../_config/.local.microservice.config.php')) {
include_once '../../_config/.local.microservice.config.php';
}
?>
window.HAXCMSContext="php";document.body.removeAttribute('no-js');window.__appCDN="<?php print $HAXSiteConfig->getCDNForDynamic();?>";
</script>
<script src="<?php print $HAXSiteConfig->getCDNForDynamic();?>build-haxcms.js"></script>
<script src="<?php print $HAXSiteConfig->getCDNForDynamic();?>build.js"></script>
<?php print $HAXSiteConfig->getGaCode(); ?>
</body>
</html>