-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (58 loc) · 2.04 KB
/
index.html
File metadata and controls
69 lines (58 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Codex</title>
<link rel="icon" type="image/svg+xml" href="favico.svg" />
<link rel="stylesheet" href="styles.css">
</head>
<body class="index">
<header>
<h1>Third Codex</h1>
<div>by Gabriel Dubé</div>
<div class="header-nav" style="margin-top: 10px;">
<div><a href="https://github.com/gabdube">Github</a></div>
<div><a href="https://x.com/gdube_dev">Twitter/X</a></div>
</div>
</header>
<main>
<div id="introduction">
Hi, I'm Gabriel. This is my personal programming compendium. If I build something that I want to share, be it a tech demo or an article, it will appear down there.
</div>
<hr style="width: 400px;">
<div id="gallery">
<div class="gallery-item" style="background-image: url('/capsules/navmesh_pathfinding.png');">
<div class="gallery-item-hover">
<a href="/articles/navmesh_pathfinding/release/navmesh_pathfinding.html">
<span>2D Navmesh Pathfinding</span>
</a>
</div>
</div>
<div class="gallery-item" style="background-image: url('/capsules/gui.png');">
<div class="gallery-item-hover">
<a href="/articles/retained_gui/release/retained_gui.html">
<span>Retained mode GUI<br> for Rust</span>
</a>
</div>
</div>
<div class="gallery-item" style="background-image: url('/capsules/rust-slug.png');">
<div class="gallery-item-hover">
<a href="/articles/rust_slug/rust_slug.html">
<span>Slug Font Rendering <br> with Rust</span>
</a>
</div>
</div>
<div class="gallery-item no-content">
<img src="/capsules/non_content.webp">
<p>More coming soon™</p>
</div>
<div class="gallery-item no-content" style="opacity: 0%;">
</div>
</div>
</main>
<footer>
<p>Copyright © 2025 Gabriel Dubé</p>
</footer>
</body>
</html>