-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathHead.astro
More file actions
66 lines (61 loc) · 2.51 KB
/
Head.astro
File metadata and controls
66 lines (61 loc) · 2.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
const { title = "Dev Encyclopedia", ...props } = Astro.props
---
<!-- Common meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="DevPedia | Open-Source Developer Reference">
<meta
name="description"
content="400+ programming terms explained clearly. Open-source tech dictionary with category filters for frontend, backend, DevOps, and CS fundamentals. Community-maintained knowledge base.">
<meta
name="keywords"
content="open source programming dictionary, coding glossary, developer reference, tech terminology, frontend concepts, backend concepts, DevOps terms, computer science basics, GitHub knowledge base">
<meta name="robots" content="index, follow">
<meta name="language" content="en">
<meta name="author" content="Chenuli Jayasinghe">
<!-- Canonical URL -->
<link rel="canonical" href="https://devpedia.dev" />
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://devpedia.dev">
<meta property="og:title" content="Dev Encyclopedia | A dictionary for programmers">
<meta
property="og:description"
content="Community-driven encyclopedia for programmers with 400+ terms + category filters. Learn about programming concepts and tech jargon in Plain English">
<meta property="og:image" content="https://i.ibb.co/nMwVhk7c/social-media-cover.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Dev Encyclopedia",
"url": "https://devpedia.pages.dev",
"description": "A dictionary for programmers",
"license": "https://github.com/Buzzpy/Dev-Encyclopedia/blob/develop/LICENSE",
"isAccessibleForFree": true,
"keywords": "programmer dictionary, dev encyclopedia, devpedia, programming, development, glossary, open source, technical terms, programmer encyclopedia",
"publisher": {
"@type": "Organization",
"name": "Programming and Doodles",
"founder": "Chenuli Jayasinghe",
"foundingDate": "2024",
"email": "chenuli@devpedia.dev",
"sameAs": "https://github.com/Buzzpy"
}
}
</script>
<!-- Footer Microdata -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WPFooter",
"copyrightHolder": {
"@type": "Organization",
"name": "Programming and Doodles",
"copyrightYear": "2025"
},
"copyrightNotice": "Content available under CC BY-SA 4.0 license"
}
</script>