-
Notifications
You must be signed in to change notification settings - Fork 1
/
site_not_crawled.html
49 lines (49 loc) · 1.16 KB
/
site_not_crawled.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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'/>
<title>Could Not Generate Rich Link</title>
<meta property="og:title" content="Could Not Generate Rich Link">
<meta property="twitter:title" content="Could Not Generate Rich Link">
<meta name="description" property="og:description" content="{reason}">
<meta property="twitter:description" content="{reason}">
<meta property="og:site_name" content="fxraffinity.net">
<meta property="twitter:site" content="@kheinacom"><meta property="twitter:card" content="summary">
</head>
<!-- ♀ -->
<body>
<style>
html, body {
font-family: Bitstream Vera Sans, DejaVu Sans, Arial, Helvetica, sans-serif;
background: #000;
width: 100vw;
height: 100vh;
}
html, body, p, main {
margin: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
main {
color: #DDD;
text-align: center;
width: 100%;
background: #1E1F25;
}
div {
padding: 25px;
}
</style>
<main>
<div>
Could not generate rich link due to the following reason:
<br>
{reason}
</div>
</main>
</body>
</html>