-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.77 KB
/
Copy pathindex.html
File metadata and controls
46 lines (46 loc) · 1.77 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Hector Ramirez — software engineer in Houston, TX. Notes on software engineering, open source, and the occasional detour into markets."
/>
<link rel="alternate" type="application/rss+xml" title="Hector Ramirez" href="/rss.xml" />
<!-- Archivo (display/UI grotesque, variable width), Newsreader (article body
serif, optical sizing), IBM Plex Mono (dates, counts, licenses). -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@75..125,400..700&family=IBM+Plex+Mono:wght@400;500&family=Newsreader:ital,opsz,wght@0,6..72,300..600;1,6..72,300..600&display=swap"
/>
<title>Hector Ramirez</title>
<script>
try {
const stored = localStorage.getItem('theme');
if (
stored === 'dark' ||
(!stored && window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
document.documentElement.classList.add('dark');
}
} catch (e) {
/* default to light */
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- GoatCounter analytics (privacy-friendly, no cookies).
Requires the matching account at goatcounter.com — update the
subdomain below if yours differs. -->
<script
data-goatcounter="https://hectorramirez.goatcounter.com/count"
async
src="//gc.zgo.at/count.js"
></script>
</body>
</html>