-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
71 lines (60 loc) · 2.22 KB
/
template.html
File metadata and controls
71 lines (60 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Page | merc1305 Lab</title>
<!-- SEO Optimization -->
<meta name="description" content="Description of the new tool or article.">
<!-- Fonts & Shared CSS -->
<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=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
<!-- Adjust path to index.css if creating page in a subfolder -->
<link rel="stylesheet" href="../index.css">
<link rel="icon" type="image/png" href="https://github.com/merc1305.png">
<style>
/* Component-specific styles */
.page-content {
margin-top: 4rem;
}
</style>
</head>
<body>
<div class="bg-gradient"></div>
<div class="bg-blobs">
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
</div>
<main class="container page-content">
<!-- Unified Navigation Component -->
<a href="../index.html" class="back-link">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<line x1="19" y1="12" x2="5" y2="12"></line>
<polyline points="12 19 5 12 12 5"></polyline>
</svg>
Back to Lab
</a>
<header>
<span class="badge">Category Toggle</span>
<h1>Page Heading</h1>
<p>Brief summary of the page purpose or scope.</p>
</header>
<section>
<div class="glass-card">
<h2>Content Section</h2>
<p>
This is a standard content area. It uses the glassmorphism design pattern
defined in the global style system.
</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2026 merc1305. Exploring the boundaries of technology.</p>
</div>
</footer>
</body>
</html>