-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·91 lines (80 loc) · 3.71 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SwayamSevak</title>
<meta name="description" content="Chatbot for Smart India.">
<!-- Put github.io link in href below. -->
<link rel="canonical" href="" />
<!-- Mobile Stuff -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="msapplication-tap-highlight" content="no">
<!-- Google Chrome -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="SwayamSevak">
<!-- Put your logo in href. -->
<link rel="icon" href="https://user-images.githubusercontent.com/29799995/53495670-642b3680-3ac6-11e9-88e2-1561f80498d7.png">
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#FF9800">
<!-- Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="SwayamSevak">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="apple-touch-icon" href="https://user-images.githubusercontent.com/29799995/53495670-642b3680-3ac6-11e9-88e2-1561f80498d7.png">
<!-- OpenGraph -->
<meta property="og:title" content="SwayamSevak">
<meta property="og:image" content="https://imgur.com/YkOoS4h.png">
<meta property="og:description" content="Chatbot for Smart India.">
<meta property="og:url" content="https://example.com">
<meta property="og:type" content="website" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:description" content="SwayamSevak" />
<meta name="twitter:title" content="Chatbot for Smart India." />
<meta name="twitter:image" content="https://i.imgur.com/YkOoS4h.png" />
<!-- Windows 8 -->
<meta name="msapplication-TileImage" content="https://user-images.githubusercontent.com/29799995/53495670-642b3680-3ac6-11e9-88e2-1561f80498d7.png">
<meta name="msapplication-TileColor" content="#FF9800">
<!-- Microdata -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Website",
"publisher": {
"@type": "Person",
"name": "Your Name"
},
"url": "https://example.com",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://example.com"
},
"description": "You don't need humans in hospital.",
"potentialAction": {
"@type": "SearchAction",
"target": "https://example.com?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Stylesheets -->
<link rel="stylesheet" href="https://unpkg.com/material-components-web@0.26.0/dist/material-components-web.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script src="dist/build.js"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('/worker.js')
})
}
</script>
<noscript>
<h1>:(</h1>
<p>Hello, it looks like your JavaScript is disabled, please enable it, since the page can't render without it</p>
</noscript>
</body>
</html>