-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (84 loc) · 3.41 KB
/
Copy pathindex.html
File metadata and controls
96 lines (84 loc) · 3.41 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
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A cinematic portfolio by RHCProc, featuring selected engineering projects.">
<title>rhcproc | Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<canvas class="starfield" aria-hidden="true"></canvas>
<header class="site-header">
<a class="brand" href="#top" aria-label="rhcproc home">
<span class="brand-mark"></span>
<span>rhcproc</span>
</a>
</header>
<main id="top">
<section id="about" class="section split-section">
<div class="about-copy">
<details class="filter-panel">
<summary>
<span class="filter-icon" aria-hidden="true">⌕</span>
<span class="eyebrow">Technical Stack</span>
<span>Filter</span>
</summary>
<label class="filter-search">
<span>Search stack</span>
<input type="search" placeholder="Type a skill..." data-skill-search>
</label>
<div class="filter-progress" data-filter-progress hidden aria-hidden="true">
<span></span>
</div>
<p class="filter-count" data-filter-count aria-live="polite"></p>
<ul class="skill-list" aria-label="Technical skill filters" data-skill-filters>
</ul>
</details>
</div>
</section>
<section id="projects" class="section">
<p class="eyebrow">Projects</p>
<div class="project-grid" data-project-grid>
</div>
</section>
</main>
<footer class="site-footer">
<span>rhcproc Portfolio</span>
<span>Built for GitHub Pages</span>
</footer>
<dialog class="project-modal" id="project-modal" aria-labelledby="modal-title">
<div class="modal-shell">
<button class="modal-close" type="button" data-close-modal aria-label="Close project detail">Close</button>
<button class="modal-arrow modal-arrow-left" type="button" data-project-prev aria-label="Previous project">
<span aria-hidden="true">←</span>
</button>
<button class="modal-arrow modal-arrow-right" type="button" data-project-next aria-label="Next project">
<span aria-hidden="true">→</span>
</button>
<div class="project-meta" id="modal-tags"></div>
<h2 id="modal-title"></h2>
<p class="modal-summary" id="modal-summary"></p>
<figure class="modal-image-frame">
<img id="modal-image" src="assets/stellar-hero.png" alt="">
</figure>
<dl class="project-details modal-details" id="modal-details"></dl>
<div class="modal-body">
<div>
<h3>What it does</h3>
<p id="modal-story"></p>
</div>
<div>
<h3>Key outcomes</h3>
<ul id="modal-outcomes"></ul>
</div>
</div>
<div class="project-links modal-links" id="modal-links"></div>
</div>
</dialog>
<script src="script.js"></script>
</body>
</html>