-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ejs
More file actions
44 lines (38 loc) · 2.19 KB
/
Copy pathindex.ejs
File metadata and controls
44 lines (38 loc) · 2.19 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="manifest" href="manifest.json" />
<link rel="shortcut icon" href="assets/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png"/>
<!-- General SEO -->
<meta name="author" content="<%= htmlWebpackPlugin.options.author %>" />
<meta name="title" content="<%= htmlWebpackPlugin.options.title %>" />
<meta name="description" content="<%= htmlWebpackPlugin.options.description %>" />
<meta name="keywords" content="<%= htmlWebpackPlugin.options.keywords %>" />
<!-- Facebook / Open Graph -->
<meta property="og:locale" content="de_DE" />
<meta property="og:type" content="website" />
<meta property="og:title" content="<%= htmlWebpackPlugin.options.title %>" />
<meta property="og:description" content="<%= htmlWebpackPlugin.options.description %>" />
<meta property="og:url" content="<%= htmlWebpackPlugin.options.siteUrl %>" />
<meta property="og:image" content="<%= htmlWebpackPlugin.options.previewUrl %>" />
<!-- Twitter -->
<meta name="twitter:card" content="<%= htmlWebpackPlugin.options.twitterCard %>" />
<meta name="twitter:site" content="<%= htmlWebpackPlugin.options.twitterHandle %>" />
<meta name="twitter:creator" content="<%= htmlWebpackPlugin.options.twitterHandle %>" />
<meta name="twitter:title" content="<%= htmlWebpackPlugin.options.title %>" />
<meta name="twitter:description" content="<%= htmlWebpackPlugin.options.description %>" />
<meta name="twitter:url" content="<%= htmlWebpackPlugin.options.siteUrl %>" />
<meta name="twitter:image" content="<%= htmlWebpackPlugin.options.previewUrl %>" />
</head>
<body>
<main id="app" role="application"></main>
</body>
</html>