-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Newshack</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/newshack/static/favicon.png" sizes="32x32">
<link rel="apple-touch-icon" sizes="167x167" href="/newshack/static/ipad.png">
<link rel="apple-touch-icon" sizes="180x180" href="/newshack/static/iphone.png">
<script type="text/javascript">
(function(d) {
// Support SPAs on GH Pages
var redirect = sessionStorage.redirect
delete sessionStorage.redirect
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect)
}
// Load Fonts
var x = d.createElement('link')
var y = d.getElementsByTagName('script')[0]
x.rel = 'stylesheet'
x.href = 'https://rsms.me/inter/inter-ui.css'
y.parentNode.insertBefore(x, y)
})(document)
</script>
</head>
<body>
<div id="app"></div>
<script src="/newshack/dist/bundle.js"></script>
</body>
</html>