-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 1.19 KB
/
index.html
File metadata and controls
36 lines (30 loc) · 1.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
<!doctype html>
<html lang="{{lang}}">
<head>
<% if (stage !== "development") { %> {{googleAnalytics}} <% } %>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="{{keywords}}" />
<meta name="theme-color" content="{{themeColor}}" />
<meta property="og:image" content="{{ogImage}}" />
<!-- HTML Meta Tags -->
<title>{{title}}</title>
<meta name="description" content="{{description}}" />
<!-- SEO -->
<link rel="canonical" href="{{canonical}}" />
<!-- Facebook Meta Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="{{title}}" />
<meta property="og:description" content="{{description}}" />
<meta property="og:image" content="{{ogImage}}" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="{{title}}" />
<meta name="twitter:description" content="{{description}}" />
<meta name="twitter:image" content="{{ogImage}}" />
</head>
<body>
<div id="root"></div>
</body>
</html>