2023-10-02 03:41:02 +00:00
maintenance = false //TODO: Use env var instead
2023-10-01 23:39:12 +00:00
if ( maintenance ) {
if ( window . location . href . indexOf ( "maintenance" ) == - 1 ) {
document . getElementById ( "Maintenance" ) . innerHTML = ` <span class="warning">Warning:<br/>Site under maintenance.<br/>Be warned, site may be unstable.</span> `
}
document . getElementById ( "Maintenance" ) . removeAttribute ( "hidden" )
2023-10-02 03:41:02 +00:00
//if (window.location.href.indexOf("maintenance") == -1 && window.location.href.indexOf('id') == -1) {
//window.location.href = "/maintenance"
//}
2023-10-01 23:39:12 +00:00
} else if ( ! ( window . location . href . indexOf ( "maintenance" ) == - 1 ) ) {
document . getElementById ( "Maintenance" ) . innerHTML = ` <span class="rainbow">Website not under maintenance.</span> `
}
2023-10-02 03:41:02 +00:00
console . info ( "Maintenance Script done." )