-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.html
More file actions
96 lines (96 loc) · 4.86 KB
/
Copy pathheader.html
File metadata and controls
96 lines (96 loc) · 4.86 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
<!-- header.html -->
<header class="header-wrapper">
<nav class="header-nav mx-auto flex max-w-4xl items-center justify-between px-4">
<!-- Logo -->
<a href="index.html" class="header-logo flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="logo-svg">
<path d="M5 7l5 5l-5 5" />
<path d="M12 19l7 0" />
</svg>
<span class="logo-main">diseo</span><span class="logo-at">@</span><span class="logo-main">hacker</span>
<span class="terminal-cursor">_</span>
</a>
<!-- Desktop nav -->
<ul class="header-desktop hidden items-center sm:flex">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="ctf.html" class="nav-link">CTFs</a></li>
<li><a href="tools.html" class="nav-link">Tools</a></li>
<li><a href="reflections.html" class="nav-link">Reflections</a></li>
<li><a href="certificates.html" class="nav-link">Certs</a></li>
<li><a href="enviroments.html" class="nav-link">Envs</a></li>
<li><a href="cheatsheet.html" class="nav-link">Cheatsheet</a></li>
<li><a href="bugbounty.html" class="nav-link">BugBounty</a></li>
<li><a href="resources.html" class="nav-link">Resources</a></li>
<li>
<a href="https://d1se0.github.io/hardwarehacking/" target="_blank" rel="noopener noreferrer"
class="nav-link nav-hw-link" title="Hardware Hacking Blog">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
style="display:inline;vertical-align:-1px;margin-right:3px;opacity:.8;">
<rect x="4" y="4" width="16" height="16" rx="2"/>
<rect x="9" y="9" width="6" height="6"/>
<line x1="9" y1="2" x2="9" y2="4"/><line x1="15" y1="2" x2="15" y2="4"/>
<line x1="9" y1="20" x2="9" y2="22"/><line x1="15" y1="20" x2="15" y2="22"/>
<line x1="2" y1="9" x2="4" y2="9"/><line x1="2" y1="15" x2="4" y2="15"/>
<line x1="20" y1="9" x2="22" y2="9"/><line x1="20" y1="15" x2="22" y2="15"/>
</svg>HW
</a>
</li>
</ul>
<!-- Hamburger (mobile) -->
<button id="mobile-toggle" class="mobile-hamburger sm:hidden" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
</nav>
<!-- Mobile nav -->
<div id="mobile-menu" class="hidden sm:hidden">
<ul class="mobile-menu-list">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="ctf.html" class="nav-link">CTFs</a></li>
<li><a href="tools.html" class="nav-link">Tools</a></li>
<li><a href="reflections.html" class="nav-link">Reflections</a></li>
<li><a href="certificates.html" class="nav-link">Certificates</a></li>
<li><a href="enviroments.html" class="nav-link">Environments</a></li>
<li><a href="cheatsheet.html" class="nav-link">CheatSheet</a></li>
<li><a href="bugbounty.html" class="nav-link">BugBounty</a></li>
<li><a href="resources.html" class="nav-link">Resources</a></li>
<li>
<a href="https://d1se0.github.io/hardwarehacking/" target="_blank" rel="noopener noreferrer"
class="nav-link nav-hw-link">
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
style="display:inline;vertical-align:-1px;margin-right:5px;opacity:.8;">
<rect x="4" y="4" width="16" height="16" rx="2"/>
<rect x="9" y="9" width="6" height="6"/>
<line x1="9" y1="2" x2="9" y2="4"/><line x1="15" y1="2" x2="15" y2="4"/>
<line x1="9" y1="20" x2="9" y2="22"/><line x1="15" y1="20" x2="15" y2="22"/>
<line x1="2" y1="9" x2="4" y2="9"/><line x1="2" y1="15" x2="4" y2="15"/>
<line x1="20" y1="9" x2="22" y2="9"/><line x1="20" y1="15" x2="22" y2="15"/>
</svg>Hardware Hacking
</a>
</li>
</ul>
</div>
<script>
// Mobile menu toggle — scoped inside header to avoid conflicts
(function () {
const toggle = document.getElementById('mobile-toggle');
const menu = document.getElementById('mobile-menu');
if (!toggle || !menu) return;
toggle.addEventListener('click', () => {
menu.classList.toggle('hidden');
toggle.classList.toggle('open');
});
})();
// Scroll shadow on header
(function () {
const nav = document.querySelector('.header-nav');
window.addEventListener('scroll', () => {
nav.classList.toggle('scrolled', window.scrollY > 10);
}, { passive: true });
})();
</script>
</header>