-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
26 lines (25 loc) · 976 Bytes
/
app.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
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head>
<script>
window.onload = function () {
if (navigator.appName.indexOf('Internet Explorer') != -1 || navigator.userAgent.match(
/Trident.*rv[ :]*11\./)) {
var notSupported = document.getElementById('notSupported');
document.body.style.cssText = 'display: inline; height: 100%;';
notSupported.style.cssText = 'display: table; width: 100%; height: 100%; background: #fafafa; color: #333; font-family: \'Roboto\', sans-serif; text-align: center; padding-top: 10%;';
}
};
// for etracker code, which is setup in tracking.js plugin...
var et_pagename = 'my.cloudradar.io';
</script>
{{ HEAD }}
</head>
<body {{ BODY_ATTRS }}>
<div id="notSupported" style="display: none;">
<p style="font-size: 24px;">This browser is not supported</p>
<p style="font-size: 16px;">Please use a modern browser like Chrome, Edge, Firefox or Safari</p>
</div>
{{ APP }}
</body>
</html>