-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
27 lines (25 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%- title %></title>
<meta name="description" content="<%- description %>" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="<%- siteUrl %>" />
<meta property="og:type" content="website" />
<meta property="og:title" content="<%- title %>" />
<meta property="og:description" content="<%- description %>" />
<meta property="og:image" content="<%- imagePath %>" />
<!-- Twitter Meta Tags -->
<meta property="twitter:url" content="<%- siteUrl %>" />
<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="<%- imagePath %>" />
<script defer data-domain="<%- domain %>" src="/p.js"></script>
</head>
<body>
<script type="module" src="/src/main.js"></script>
</body>
</html>