-
Notifications
You must be signed in to change notification settings - Fork 40
/
index.html
50 lines (44 loc) · 1.84 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Software Daily</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no" />
<!--for prerender.io https://prerender.io/documentation-->
<meta name="fragment" content="!">
<meta name="apple-itunes-app-name" content="app-id=1253734426" />
<meta name="apple-itunes-app" content="app-id=1253734426" affiliate-data=myAffiliateData, app-argument=myURL />
<meta name="google-play-app" content="app-id=com.koalatea.sedaily" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel="android-touch-icon" href="android-icon.png" />
<link rel="shortcut icon" type="image/png" href="/static/favicon.png" />
<link rel="search" type="application/opensearchdescription+xml" title="Software Daily" href="/static/search.xml" />
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700' rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@600&display=swap" rel="stylesheet">
<style>
.smartbanner-show {
margin-top: 0!important;
}
.smartbanner {
top: auto!important;
bottom: 0;
position: fixed!important;
}
</style>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script src="https://js.stripe.com/v3/"></script>
<script src="https://www.google.com/recaptcha/api.js?onload=vueRecaptchaApiLoaded&render=explicit" async defer></script>
<script>
(function () {
if (window.origin === 'http://localhost:8080') {
let scriptEl = document.createElement('script')
scriptEl.setAttribute('src', 'http://localhost:8098')
document.body.appendChild(scriptEl)
}
})()
</script>
</body>
</html>