-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 977 Bytes
/
index.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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>GitHub Events Watcher</title>
<meta name="description" content="A small web application to list GitHub organization events.">
<meta property="twitter:image" content="https://github.com/mnixo/github-events-watcher/raw/master/img/icon-192.png">
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
<link rel="manifest" href="manifest.json">
<link rel="import" href="service-worker.html">
<link id="analytics">
<script src="node_modules/web-animations-js/web-animations-next-lite.min.js"></script>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script type="module" src="src/gew-app.js"></script>
</head>
<body>
<style>
body {
margin: 0;
background-color: #aaa;
}
</style>
<gew-app></gew-app>
</body>
</html>