2020-08-05 15:39:16 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
2020-08-28 12:43:19 +01:00
|
|
|
<title>Gabinete Digital</title>
|
2020-08-05 15:39:16 +01:00
|
|
|
|
|
|
|
|
<base href="/" />
|
|
|
|
|
|
2021-04-08 09:25:25 +01:00
|
|
|
<script src="assets/js/index.js"></script>
|
|
|
|
|
<script src="assets/js/wldirectudpate.js"></script>
|
2021-06-23 09:19:09 +01:00
|
|
|
<script>
|
|
|
|
|
if (navigator.serviceWorker) {
|
|
|
|
|
navigator.serviceWorker.register("assets/js/MFPPushServiceWorker.js").then(function(reg) {
|
|
|
|
|
window.pushReg = reg;
|
|
|
|
|
if (reg.installing) {
|
|
|
|
|
console.info('Service worker installing');
|
|
|
|
|
} else if (reg.waiting) {
|
|
|
|
|
console.info('Service worker installed');
|
|
|
|
|
} else if (reg.active) {
|
|
|
|
|
console.info('Service worker active');
|
|
|
|
|
}
|
|
|
|
|
if (!(reg.showNotification)) {
|
|
|
|
|
console.info('Notifications aren\'t supported on service workers.');
|
|
|
|
|
}
|
|
|
|
|
// Check if push messaging is supported
|
|
|
|
|
if (!('PushManager' in window)) {
|
|
|
|
|
console.info("Push messaging isn't supported.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Notification.permission === 'denied') {
|
|
|
|
|
console.info('The user has blocked notifications.');
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.error(JSON.stringify(err));
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
console.info("Service workers aren't supported in this browser.");
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2021-04-08 09:25:25 +01:00
|
|
|
|
2020-08-05 15:39:16 +01:00
|
|
|
<meta name="color-scheme" content="light dark" />
|
2020-09-07 10:16:29 +01:00
|
|
|
<meta name="viewport" content="viewport-fit=cover, width=device-width, height=device-hight, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
2020-08-05 15:39:16 +01:00
|
|
|
<meta name="format-detection" content="telephone=no" />
|
|
|
|
|
<meta name="msapplication-tap-highlight" content="no" />
|
2021-02-25 10:53:00 +01:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
|
2021-02-24 16:39:11 +01:00
|
|
|
|
2021-02-25 10:53:00 +01:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
2020-09-07 13:47:47 +01:00
|
|
|
|
2020-08-17 14:56:42 +01:00
|
|
|
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.png" />
|
2021-06-23 09:19:09 +01:00
|
|
|
<link rel="manifest" href="assets/json/manifest.json">
|
2020-08-05 15:39:16 +01:00
|
|
|
|
|
|
|
|
<!-- add to homescreen for ios -->
|
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
2021-02-24 16:39:11 +01:00
|
|
|
|
2021-06-16 15:58:44 +01:00
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
|
|
|
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
2020-08-05 15:39:16 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<app-root></app-root>
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|