-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.51 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Field notes on exploits, reverse engineering, and farming bugs.">
<meta name="color-scheme" content="dark">
<title>// 0xDREDSEN's Blog</title>
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<main class="wrap">
<header class="site-header">
<h1><a href="./">// 0xDREDSEN's Blog</a></h1>
<p class="tagline">$ whoami — field notes on exploits, reverse engineering, and farming bugs.</p>
</header>
<ul id="post-list" class="post-list">
<li class="empty">Loading posts…</li>
</ul>
<footer class="site-footer">
<button type="button" id="easter-egg" class="easter-egg" aria-label="play easter egg">All your base are belong to us</button>
</footer>
</main>
<div id="egg-modal" class="egg-modal" hidden>
<div class="egg-modal__backdrop" data-egg-close></div>
<div class="egg-modal__content" role="dialog" aria-modal="true" aria-label="easter egg">
<button type="button" class="egg-modal__close" data-egg-close aria-label="close">×</button>
<video id="egg-video" class="egg-modal__video" src="assets/video/allYourBaseBelongToUs.mp4" controls playsinline></video>
</div>
</div>
<script src="assets/js/home.js"></script>
<script src="assets/js/easter-egg.js"></script>
</body>
</html>