-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.52 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html public "Gerard Braad">
<html lang="en">
<head>
<title>Pull Request dashboard</title>
<meta charset="UTF-8">
<link rel="manifest" href="manifest.json">
<meta name="description" content="A webapp to show status of pull requests on GitHub">
<meta name="HandheldFriendly" content="True">
<meta http-equiv="cleartype" content="on">
<link rel="shortcut icon" href="icons/ghdash-icon-64.png">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/default.css" type="text/css" />
<link rel="stylesheet" href="style/cards.css" type="text/css" />
<meta name="apple-mobile-web-app-title" content="GitHub Dashboard">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
</head>
<body>
<ul id="projects">
<li><button id="project-crc">CRC</button></li>
<li><button id="project-snc">snc</button></li>
<li><button id="project-extension">extension</button></li>
</ul>
<div id="cards">
<span style="margin:3em; font-family: arial;">Please wait ...</span>
</div>
<!-- application logic -->
<script src="js/github.js"></script>
<script src="js/templates.js"></script>
<script src="js/storage.js"></script>
<script src="js/application.js"></script>
<script src="js/serviceworker-register.js"></script>
</body>
</html>