-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
35 lines (33 loc) · 1.42 KB
/
Copy pathpost.html
File metadata and controls
35 lines (33 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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">
<a href="./" class="back-link">← back</a>
<article id="post" class="post">
<p class="empty">Loading post…</p>
</article>
<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="https://cdn.jsdelivr.net/npm/marked@12.0.2/marked.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dompurify@3.1.6/dist/purify.min.js"></script>
<script src="assets/js/post.js"></script>
<script src="assets/js/easter-egg.js"></script>
</body>
</html>