-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (52 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Hi! I'm Jared, a full stack web developer living in Dallas, Texas">
<meta property="og:title" content="Jared Furlow - Web Developer">
<meta property="og:description" content="Hi! I am a full stack web developer living in Dallas, Texas">
<meta property="og:image" content="https://me.jaredfurlow.com/jared.jpg">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@jdf221">
<link rel="canonical" href="https://me.jaredfurlow.com/" />
<!-- His name is Tiny Donald <3 -->
<link rel="icon" href="/images/favicon/32x32.png" sizes="32x32">
<link rel="icon" href="/images/favicon/228x228.png" sizes="228x228">
<title>Jared Furlow | Web Developer</title>
<script>
const $html = document.querySelector("html");
if (
localStorage.theme === "dark" ||
(!("theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
$html.classList.add("dark");
} else {
$html.classList.remove("dark");
}
</script>
</head>
<body
class="dark:text-gray-200 dark:bg-kinda-black bg-kinda-white subpixel-antialiased"
>
<div
class="portrait:flex-wrap sm:flex-nowrap flex flex-wrap justify-center px-4 pt-10 pb-10 space-x-4"
>
<div class="flex flex-col items-center pb-2 mt-1">
{{> ProfileSection}}
<div class="flex flex-row -ml-3 space-x-6">
{{> SpotifyWidget}}
{{> DiscordWidget}}
</div>
</div>
<div class="landscape:max-w-prose portrait:max-w-2xl border-l border-indigo-700 dark:border-shirt pl-2">
{{> MainHeader}}
{{> AboutMe}}
{{> ProjectList}}
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>