-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (62 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, shrink-to-fit=no">
<title>__TITLE__</title>
<meta name="description" content="__DESCRIPTION__">
<meta name="keywords" content="__KEYWORDS__">
<meta name="author" content="__AUTHOR__">
<link rel="canonical" href="https://example.com">
<meta property="og:title" content="__TITLE__">
<meta property="og:type" content="website">
<meta property="og:url" content="https://example.com">
<meta property="og:image" content="https://example.com/logo.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:alt" content="__TITLE__ logo">
<meta property="og:locale" content="en_US">
<meta property="og:description" content="__DESCRIPTION__">
<meta property="og:site_name" content="__TITLE__">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@__TWITTER_SITE__">
<meta name="twitter:creator" content="@__TWITTER_CREATOR__">
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "WebSite",
"name": "__TITLE__",
"url": "https://example.com",
"sameAs": [
"https://www.facebook.com/yourprofile",
"https://www.linkedin.com/in/yourprofile",
"https://plus.google.com/yourprofile"
],
"headline": "__TITLE__",
"keywords": "__KEYWORDS__",
"description": "__DESCRIPTION__",
"image": "https://example.com/logo.png",
"author": {
"@type": "Person",
"name": "__AUTHOR__"
}
}
</script>
<link rel="manifest" href="/manifest.webmanifest">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="__TITLE__">
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="__TITLE__">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<link rel="icon" type="image/png" sizes="16x16" href="/icon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/icon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<meta name="msapplication-TileColor" content="#000000">
<link rel="stylesheet" type="text/css" href="/index.css">
</head>
<body>
<main><h1>__TITLE__</h1></main>
</body>
</html>