-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·125 lines (105 loc) · 4.63 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Frontline</title>
<meta property="og:title" content="Frontline Chat">
<meta property="og:image" content="assets/img/link-logo.png">
<meta property="og:description" content="Natural Language Processing interactive chatbot to support friends and family of veterans and those suffering from PTSD. Project for Lumohacks 2018.">
<link rel="canonical" href="https://github.com/lumohacks2018/lumohacks2018.github.io" />
<!-- 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="Dialogflow for Web">
<link rel="icon" href="https://console.dialogflow.com/api-client/assets/img/logo-short.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="Dialogflow for Web">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="apple-touch-icon" href="https://console.dialogflow.com/api-client/assets/img/logo-short.png">
<!-- OpenGraph -->
<meta property="og:title" content="Dialogflow for Web">
<meta property="og:image" content="https://imgur.com/YkOoS4h.png">
<meta property="og:description" content="Dialogflow unofficial Progressive Web App">
<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="Dialogflow unofficial Progressive Web App" />
<meta name="twitter:title" content="Dialogflow for Web" />
<meta name="twitter:image" content="https://i.imgur.com/YkOoS4h.png" />
<!-- Windows 8 -->
<meta name="msapplication-TileImage" content="https://console.dialogflow.com/api-client/assets/img/logo-short.png">
<meta name="msapplication-TileColor" content="#FF9800">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- 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": "Dialogflow unofficial Progressive Web App",
"potentialAction": {
"@type": "SearchAction",
"target": "https://example.com?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script>
$(document).ready(function(){
$(".menu_button").click(function(){
show_menu();
});
});
function show_menu()
{
$('.menu_links').animate({width:'toggle'},350);
}
</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">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="menu">
<p class="menu_button">
<img src="menuicon-grey.png">
</p>
<div class="logo">
<a href="./index.html"><img src="Frontline_Logo.png"></a>
</div>
</div>
<ul class="menu_links">
<li><a href="#"></a></li>
<li><a href="./about.html">About</a></li>
</ul>
<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>