-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (82 loc) · 2.95 KB
/
index.html
File metadata and controls
89 lines (82 loc) · 2.95 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ian Skelskey - Portfolio</title>
<meta
name="description"
content="Ian Skelskey — Software Engineer & Designer. Portfolio of web apps, games, and open-source work in React, TypeScript, Perl, and Godot, with a focus on clean code and accessibility."
/>
<meta name="author" content="Ian Skelskey" />
<!-- Theme color matches the accent token in light/dark mode -->
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#4d6336"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#99b77b"
/>
<meta name="color-scheme" content="light dark" />
<link rel="canonical" href="https://ianskelskey.github.io/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Ian Skelskey - Portfolio" />
<meta property="og:title" content="Ian Skelskey - Portfolio" />
<meta
property="og:description"
content="Software Engineer & Designer. Web apps, games, and open-source work in React, TypeScript, Perl, and Godot."
/>
<meta property="og:url" content="https://ianskelskey.github.io/" />
<meta
property="og:image"
content="https://ianskelskey.github.io/og-image.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="Ian Skelskey — Software Engineer & Designer"
/>
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Ian Skelskey - Portfolio" />
<meta
name="twitter:description"
content="Software Engineer & Designer. Web apps, games, and open-source work in React, TypeScript, Perl, and Godot."
/>
<meta
name="twitter:image"
content="https://ianskelskey.github.io/og-image.png"
/>
<meta
name="twitter:image:alt"
content="Ian Skelskey — Software Engineer & Designer"
/>
<!-- Structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Ian Skelskey",
"jobTitle": "Software Engineer & Designer",
"url": "https://ianskelskey.github.io/",
"image": "https://ianskelskey.github.io/pixel-portrait.png",
"sameAs": [
"https://github.com/IanSkelskey",
"https://www.linkedin.com/in/ianskelskey/"
]
}
</script>
<!-- Scripts are properly referenced by Vite during build -->
<script src="/scripts/spa-restore.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>