67P/hyperchannel

View on GitHub
app/index.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Hyperchannel</title>
    <meta name="description" content="Kosmos Chat for the Web">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <meta name="theme-color" content="#471856">

    {{content-for "head"}}

    <link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
    <link integrity="" rel="stylesheet" href="{{rootURL}}assets/hyperchannel.css">
    <link rel="manifest" href="{{rootURL}}manifest.webmanifest">
    <link rel="apple-touch-icon" href="{{rootURL}}icons/icon-square-512x512.png" sizes="512x512">

    {{content-for "head-footer"}}
  </head>
  <body>
    {{content-for "body"}}

    <script src="{{rootURL}}assets/vendor.js"></script>
    <script src="{{rootURL}}assets/hyperchannel.js"></script>

    {{content-for "body-footer"}}

    <script>
      if ('serviceWorker' in navigator) {
        navigator.serviceWorker.register('/sw.js')
        .catch((error) => {
          console.error('Could not setup service worker: ' + error);
        });
      }
    </script>
  </body>
</html>