forked from devhubapp/devhub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (89 loc) · 4.64 KB
/
index.html
File metadata and controls
108 lines (89 loc) · 4.64 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<base href="%PUBLIC_URL%" target="_blank" />
<title>DevHub</title>
<meta name="description" content="GitHub Notifications Manager & Activity Watcher. Take back control of your GitHub workflow by using columns and filters.">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="GitHub Notifications Manager & Activity Watcher">
<meta itemprop="description" content="Take back control of your GitHub workflow by using columns and filters.">
<meta itemprop="image" content="https://user-images.githubusercontent.com/619186/57279337-28d95500-707f-11e9-9b2b-60c1af41277a.jpg">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://devhubapp.com">
<meta property="og:type" content="website">
<meta property="og:title" content="GitHub Notifications Manager & Activity Watcher">
<meta property="og:description" content="Take back control of your GitHub workflow by using columns and filters.">
<meta property="og:image" content="https://user-images.githubusercontent.com/619186/57279337-28d95500-707f-11e9-9b2b-60c1af41277a.jpg">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="GitHub Notifications Manager & Activity Watcher">
<meta name="twitter:description" content="Take back control of your GitHub workflow by using columns and filters.">
<meta name="twitter:image" content="https://user-images.githubusercontent.com/619186/57279337-28d95500-707f-11e9-9b2b-60c1af41277a.jpg">
<meta name="twitter:image:alt" content="Screenshot of the DevHub web app, showing 4 columns with GitHub activities on them.">
<meta name="twitter:creator" content="@brunolemos">
<meta name="twitter:site" content="@brunolemos">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="DevHub">
<meta name="apple-mobile-web-app-title" content="DevHub">
<meta name="theme-color" content="#1F2229">
<meta name="msapplication-navbutton-color" content="#1F2229">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="msapplication-starturl" content="https://devhubapp.com/">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="apple-touch-icon" type="image/png" sizes="100x100" href="%PUBLIC_URL%/static/media/logo.png">
<link rel="apple-touch-icon" type="image/png" sizes="200x200" href="%PUBLIC_URL%/static/media/logo@2x.png">
<link rel="apple-touch-icon" type="image/png" sizes="300x300" href="%PUBLIC_URL%/static/media/logo@3x.png">
<link rel="icon" type="image/png" sizes="100x100" href="%PUBLIC_URL%/static/media/logo.png">
<link rel="icon" type="image/png" sizes="200x200" href="%PUBLIC_URL%/static/media/logo@2x.png">
<link rel="icon" type="image/png" sizes="300x300" href="%PUBLIC_URL%/static/media/logo@3x.png">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
</head>
<body>
<div id="root"></div>
<noscript id="error-container">
<link rel="stylesheet" href="%PUBLIC_URL%/static/css/error.css" />
<img src="%PUBLIC_URL%/static/media/logo.png" alt="DevHub Logo" width="100" height="100" />
<br />
<p>DevHub requires that you enable JavaScript to work.</p>
</noscript>
<script>
if (window.location.href.indexOf('//www.') >= 0) {
window.location.href = window.location.href.replace('//www.', '//')
}
/*
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker
.register('%PUBLIC_URL%/service-worker.js')
.then(reg => {
reg.onupdatefound = () => {
const installingWorker = reg.installing
installingWorker.onstatechange = () => {
if (
installingWorker.state === 'installed' &&
navigator.serviceWorker.controller
) {
location.reload()
}
}
}
})
})
}
*/
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-52350759-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
if ((window.location.search || '').includes('producthunt')) {
gtag('event', 'donthuntme')
}
</script>
<script async defer src="%PUBLIC_URL%/static/js/donthuntme.js"></script>
</body>
</html>