41 lines
855 B
HTML
41 lines
855 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Beautiful Atlas</title>
|
|
<style>
|
|
#root {
|
|
flex: 1;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex: 1;
|
|
height: 42px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style='display: flex; width: 100%'>
|
|
<div id="root">
|
|
<div class="container">
|
|
<div class="header"></div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
if ('serviceWorker' in navigator) {
|
|
navigator.serviceWorker.register('/service-worker.js')
|
|
.then(function(reg) {
|
|
console.log('SW registration succeeded');
|
|
}).catch(function(error) {
|
|
console.log('SW registration failed: ' + error);
|
|
});
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|