brutaldon-interfaccia-web-m.../brutaldon/static/offline.html

106 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
brutaldon
</title>
<link rel="manifest" href="/static/manifest.webmanifest">
<link rel="stylesheet"
href="/static/css/bulma.min.css">
<link rel="stylesheet"
href="/static/css/fork-awesome.min.css">
<link rel="stylesheet" href="/static/css/brutaldon.css">
<link rel="icon" href="/static/images/brutaldon.png" type="image/png">
</head>
<body class="has-navbar-fixed-top">
<div id="page-load-indicator">&nbsp</div>
<nav class="navbar is-fixed-top is-primary" role="navigation"
aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/home"
<img src="/static/images/brutaldon.png"
class="image is-32x32" alt="Brutaldon">
</a>
</div>
</nav>
<section id="main" class="section" ic-history-elt="true">
<div class="container">
<div class="container">
<img src="/static/images/brutaldon.png"
</div>
<h1 class="title">Brutaldon</h1>
<h2 class="subtitle">a brutalist web interface for Mastodon</h2>
<section class="section">
<p>
Either you are offline currently, or brutaldon is down. Please try again later.
</p>
</section>
</div>
</section>
<footer class="footer">
<div class="level">
<div class="level-left">
<a class="level-item is-size-7" href="/about">
About
</a>
<a class="level-item is-size-7" href="https://github.com/jfmcbrayer/brutaldon">
Source
</a>
</div>
<div class="level-right">
<a class="level-item is-size-7" href="/privacy">
Privacy
</a>
</div>
</div>
</footer>
<script type="application/javascript">
document.addEventListener('DOMContentLoaded', menuPrepare);
$(document).on('handle.onpopstate.ic',
restorePlace);
if (navigator.serviceWorker.controller) {
console.log('[PWA Builder] active service worker found, no need to register')
} else {
//Register the ServiceWorker
navigator.serviceWorker.register('pwabuilder-sw.js', {
scope: '/'
}).then(function(reg) {
console.log('Service worker has been registered for scope:'+ reg.scope);
});
}
Intercooler.ready(function ()
{
$(".attachments").photobox('a', { history: true });
var refresh = new Event('refreshOffline');
self.dispatchEvent(refresh);
});
</script>
</body>
</html>