-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (69 loc) · 3.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex, noai, noimageai" />
<meta name="theme-color" content="#0a1607" />
<!-- Favicon links for different sizes -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png" />
<link rel="manifest" href="/assets/images/favicon/site.webmanifest" />
<title>Home | Ewan's Corner</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="/assets/css/main/modules/variables.css">
<link rel="stylesheet" href="/assets/css/main/modules/reset.css">
<link rel="stylesheet" href="/assets/css/main/animations.css">
<link rel="stylesheet" href="/assets/css/main/modules/components.css">
<link rel="stylesheet" href="/assets/css/main/modules/typography.css">
<link rel="stylesheet" href="/assets/css/main/modules/responsive.css">
<link rel="stylesheet" href="/assets/css/main/modules/warning.css">
<!-- JavaScript files for functionality -->
<script src="/assets/scripts/clock.js" defer></script>
<!-- Dynamically load header and footer modules -->
<script src="/assets/scripts/modules/header.js" defer></script>
<script src="/assets/scripts/modules/footer.js" defer></script>
<!-- Profile injection script -->
<script src="/assets/scripts/atproto/profile.js" defer></script>
</head>
<body aria-label="homepage">
<noscript>
<div id="js-warning" aria-label="JavaScript warning">
<strong>Warning:</strong> JavaScript is disabled in your browser. This website relies on JavaScript for optimal
functionality. Please enable JavaScript for the best experience.
</div>
</noscript>
<!-- The header is dynamically injected here -->
<div id="header" aria-label="Website header"></div>
<main aria-label="Main content area">
<!-- Introduction text -->
<span id="emoji" class="waving_hand" aria-hidden="true">👋🏻</span>
<section aria-label="Introduction">
<h1>Hey there!</h1>
<p>
I'm <span id="profile-display-name">Ewan</span>, <span id="profile-description">British poet and
programmer.</span>
</p>
<p>
This is my website. It's not much, but feel free to explore!
<span aria-hidden="true">😁</span>
</p>
</section>
<section aria-label="Additional information">
<h2>More About Me</h2>
<p>
I enjoy writing poetry, creating digital projects, and exploring creative avenues.
You'll also find me diving into gaming, linguistics, and media like Doctor Who and Steven Universe.
</p>
<p>
Feel free to check out the <a href="/about" aria-label="Go to About Me page">About Me</a> page for more details,
or visit
<a href="https://whtwnd.com/ewancroft.uk" aria-label="Go to Ewan's Blog">my blog</a> for recent musings.
</p>
</section>
</main>
<!-- The footer is dynamically injected here -->
<div id="footer" aria-label="Website footer"></div>
</body>
</html>