-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathseo.html
More file actions
47 lines (41 loc) · 1.61 KB
/
seo.html
File metadata and controls
47 lines (41 loc) · 1.61 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
37
38
39
40
41
42
43
44
45
46
47
<!-- SEO Meta Tags -->
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="bingbot" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:locale" content="zh_CN">
<meta property="og:site_name" content="CodeClub">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@jacksoncode">
<!-- Canonical URL -->
<link rel="canonical" href="https://jacksoncode.github.io/">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png">
<!-- Preconnect to external resources -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<!-- Structured Data (Schema.org) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "CodeClub",
"url": "https://jacksoncode.github.io",
"description": "程序员的技术分享空间 - 技术博客、学习资源、图书推荐",
"author": {
"@type": "Person",
"name": "Jackson",
"url": "https://jacksoncode.github.io/about.html"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://jacksoncode.github.io/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>