-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheatsheet.html
More file actions
58 lines (47 loc) · 2.17 KB
/
cheatsheet.html
File metadata and controls
58 lines (47 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CheatSheet | diseo</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/blog.css">
<link rel="stylesheet" href="css/cheatsheet.css">
</head>
<body>
<div id="header-container"></div>
<main class="mx-auto w-full max-w-4xl px-4 py-8">
<section class="mb-8">
<br><br>
<h1 class="mb-2 text-3xl font-bold">CheatSheets</h1>
<p class="mb-4" style="color: var(--color-text-muted);">
Cheatsheets de Linux y Windows organizados por categoría.
</p>
<div class="mb-8 flex flex-wrap gap-3 filter-row" id="filter-container">
<button id="filter-all" class="cs-filter-btn">All</button>
<button id="filter-linux" class="cs-filter-btn">Linux</button>
<button id="filter-windows" class="cs-filter-btn">Windows</button>
<!-- BOTONES A LA DERECHA -->
<div class="flex gap-3 ml-auto">
<a href="view.html?cheatsheet=exercises" class="practice-btn">
🧪 Practicar Bash
</a>
<a href="https://d1se0.github.io/sql-learning/" class="practice-btn">
🗄️ SQL Learning
</a>
</div>
</div>
<input type="text" id="search-input" placeholder="Search cheatsheets..."
class="w-full rounded-lg px-4 py-3 text-sm"
style="background-color: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-text); outline: none;">
<div id="tags-container" class="mb-6"></div>
<div id="cheatsheet-grid" class="cs-grid"></div>
<br>
<div id="pagination-container" class="mt-6 flex justify-center"></div>
</section>
</main>
<script src="js/cheatsheet.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => { initCheatSheet(); });
</script>
</body>
</html>