-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
72 lines (61 loc) · 3.6 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
<!doctype html>
<html lang="<%= VUE_APP_LOCALE %>">
<head>
<base href="<%= BASE_URL %>">
<link rel="canonical" href="<%= BASE_URL %>" />
<link type="text/plain" rel="author" href="humans.txt" />
<link rel="manifest" href="site.webmanifest" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=5, user-scalable=yes, minimal-ui, viewport-fit=cover" />
<!-- Icons -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" sizes="76x76" href="apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="<%= VUE_APP_COLOR %>" />
<!-- WebApp Capable -->
<meta name="format-detection" content="telephone=no" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="<%= VUE_APP_TITLE %>" />
<meta name="msapplication-tooltip" content="<%= VUE_APP_TITLE %>" />
<meta name="apple-mobile-web-app-title" content="<%= VUE_APP_TITLE %>" />
<meta name="theme-color" content="<%= VUE_APP_COLOR %>" />
<meta name="msapplication-TileColor" content="<%= VUE_APP_COLOR %>" />
<meta name="msapplication-navbutton-color" content="<%= VUE_APP_COLOR %>" />
<!-- Add to home screen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="form" />
<!-- SEO -->
<title><%= VUE_APP_TITLE %></title>
<meta name="description" content="<%= VUE_APP_DESCRIPTION %>" />
<meta name="generator" content="<%= VUE_APP_AUTHOR %>" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="<%= VUE_APP_TWITTER %>" />
<meta name="twitter:creator" content="<%= VUE_APP_TWITTER %>" />
<meta name="twitter:domain" content="<%= BASE_URL %>" />
<meta name="twitter:image:alt" content="<%= VUE_APP_DESCRIPTION %>" />
<meta property="article:author" content="https://www.facebook.com/<%= VUE_APP_FACEBOOK %>" />
<meta property="article:publisher" content="https://www.facebook.com/<%= VUE_APP_FACEBOOK %>" />
<meta property="og:title" content="<%= VUE_APP_TITLE %>" />
<meta property="og:site_name" content="<%= VUE_APP_LIBRARY %>" />
<meta property="og:description" content="<%= VUE_APP_DESCRIPTION %>" />
<meta property="og:url" content="<%= BASE_URL %>" />
<meta property="og:locale" content="<%= VUE_APP_LOCALE %>" />
<meta property="og:image" content="og-image.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="628" />
<script type="application/ld+json">{"@context": "http://schema.org","@type": "WebPage","url": "<%= BASE_URL %>","headline": "<%= VUE_APP_TITLE %>","name": "<%= VUE_APP_LIBRARY %>","description": "<%= VUE_APP_DESCRIPTION %>","author": "<%= VUE_APP_AUTHOR %>"}</script>
</head>
<body>
<noscript>
<strong>
We're sorry but this demo doesn't work properly without JavaScript enabled.<br>
Please enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>