-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
47 lines (43 loc) · 1.76 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
<!DOCTYPE html>
<html lang="fr" class="theme-dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" id="meta-description" content="Profil HubStack">
<title id="page-title">HubStack</title>
<link rel="icon" type="image/svg+xml" id="favicon" href="assets/favicon.svg">
<link rel="stylesheet" href="style-base.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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="script.js" defer></script>
</head>
<body class="theme-dark">
<!-- Theme Toggle Button -->
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle theme">
<span id="theme-icon">☀️</span>
</button>
<div class="container">
<!-- Header Section -->
<header class="profile-header">
<div class="profile-avatar">
<img id="user-avatar" src="" alt="" class="avatar-image" style="display: none;">
</div>
<h1 class="profile-name" id="user-name" data-original="" data-leet=""></h1>
<p class="profile-bio" id="user-bio"></p>
</header>
<!-- Main Links Section -->
<section class="links-section">
<div class="links-grid" id="main-links">
<!-- Hobby Card and Links populated by JS -->
</div>
</section>
<!-- Dynamic Sections loaded here -->
<div id="dynamic-sections"></div>
<!-- Footer -->
<footer class="footer">
<p id="footer-text">HubStack</p>
</footer>
</div>
</body>
</html>