-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (105 loc) · 4.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS -->
<link rel="stylesheet" href="css/styles.css" />
<!-- SEO -->
<title>SEO title</title>
<meta name="description" content="SEO description" />
<meta name="author" content="Anastasiia Berest" />
<!-- canonical link tag -->
<link rel="canonical" href="/" />
<!-- Facebook and Twitter integration -->
<!-- FACESPACE -->
<meta property="og:title" content="SEO title" />
<meta property="og:description" content="SEO description" />
<meta property="og:image:height" content="600" />
<meta property="og:image:width" content="314" />
<meta property="og:image" content="./fav/og_600x314.jpg" />
<meta property="fb:app_id" content="..." />
<meta property="fb:admins" content="Anastasiia Berest" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="SITE_NAME" />
<meta property="og:url" content="/" />
<!-- THE TWITTER MACHINE -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="/" />
<meta name="twitter:site" content="SITE_NAME" />
<meta name="twitter:creator" content="Anastasiia Berest" />
<meta name="twitter:title" content="SEO title" />
<meta name="twitter:description" content="SEO description" />
<meta name="twitter:image" content="./fav/og_600x314.jpg" />
<!-- G++ -->
<meta itemprop="name" content="SEO title" />
<meta itemprop="description" content="SEO description" />
<meta itemprop="image" content="./fav/og_600x314.jpg" />
<link rel="apple-touch-icon" sizes="180x180" href="./fav/apple-touch-icon.png" />
<link rel="mask-icon" href="./fav/safari-pinned-tab.svg" color="#fb0266" />
<link href="./fav/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="./fav/favicon.ico" rel="icon" type="image/x-icon" />
<!--Favicon-->
<link rel="shortcut icon" href="./fav/favicon.png" type="image/x-icon" />
<link rel="icon" href="./fav/favicon.png" type="image/x-icon" />
<link rel="apple-touch-icon" sizes="144x144" href="./fav/apple-touch-icon-144x144.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./fav/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./fav/favicon-16x16.png" />
<link rel="mask-icon" href="./fav/safari-pinned-tab.svg" color="#fb0266" />
<link rel="manifest" href="./fav/site.webmanifest" />
<link rel="mask-icon" href="./fav/safari-pinned-tab.svg" color="#fb0266" />
<meta name="msapplication-TileColor" content="#fb0266" />
<meta name="theme-color" content="#fb0266" />
<meta name="msapplication-config" content="./fav/browserconfig.xml" />
<!-- PWA -->
<link rel="manifest" href="/manifest.json" />
<link rel="apple-touch-icon" href="icons/apple-icon-180.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="white" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black" />
<script async type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"name": "XFR",
"brand": "XFR",
"alternateName": "XFR",
"url": "",
"logo": "./img/logo.svg",
"address": {
"@type": "PostalAddress",
"streetAddress": "Street",
"addressLocality": "City",
"postalCode": "Code",
"addressCountry": "Country"
},
"contactPoint": [
{
"@type": "ContactPoint",
"telephone": "+380630633226",
"email": "[email protected]",
"contactType": "owner",
"areaServed": "UK",
"availableLanguage": ["English"]
}
],
"sameAs": ["", "", ""]
}
</script>
</head>
<body>
<header>
<nav class="container">
<a href="/" class="logo">XFR</a>
<p>PWA base config</p>
</nav>
</header>
<main>
<div class="container">
<h1>PWA, manifest, Service Workers</h1>
<div id="posts"></div>
</div>
</main>
<script src="js/app.js"></script>
</body>
</html>