-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathctf.html
More file actions
55 lines (45 loc) · 1.77 KB
/
ctf.html
File metadata and controls
55 lines (45 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CTFs | diseo</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/blog.css">
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="header-container"></div>
<main id="main-content" class="mx-auto w-full max-w-4xl px-4 py-8">
<section class="py-8">
<h1 class="mb-2 text-3xl font-bold">CTFs</h1>
<p class="mb-8" style="color: var(--color-text-muted)">
CTF writeups, ciberseguridad, y hacking ético.
</p>
<!-- Search bar -->
<div class="mb-6">
<input type="text" id="search-input" placeholder="Search writeups..."
class="w-full rounded-lg px-4 py-3 text-sm transition-colors"
style="background-color: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-text); outline: none;">
</div>
<div id="tags-container" class="mb-8 flex flex-wrap gap-2">
<!-- Tags will be dynamically loaded -->
</div>
<div id="tags-container" class="mb-8 flex flex-wrap gap-2"></div>
<div id="ctf-type-filter" class="mb-8 flex flex-wrap gap-3"></div>
<div id="posts-grid" class="grid gap-4 sm:grid-cols-2">
<div style="color: var(--color-text-muted);">Loading...</div>
</div>
<!-- Pagination -->
<div id="pagination-container" class="mt-8 flex justify-center gap-2"></div>
</section>
</main>
<script src="js/main.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
loadHeader('ctf.html');
initBlog();
});
</script>
</body>
</html>