-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreflections.html
More file actions
48 lines (37 loc) · 1.56 KB
/
reflections.html
File metadata and controls
48 lines (37 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reflections | diseo</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/blog.css">
</head>
<body>
<div id="header-container"></div>
<main class="mx-auto w-full max-w-4xl px-4 py-8">
<section class="py-8">
<h1 class="mb-2 text-3xl font-bold">Reflexiones</h1>
<p class="mb-8" style="color: var(--color-text-muted)">
Reflexiones sobre hacking, aprendizaje y mentalidad.
</p>
<div class="mb-6">
<input type="text" id="search-input" placeholder="Search reflections..."
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>
<div id="tags-container" class="mb-8 flex flex-wrap gap-2"></div>
<div id="posts-grid" class="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
<div style="color: var(--color-text-muted);">Loading...</div>
</div>
<div id="pagination-container" class="mt-8 flex justify-center gap-2"></div>
</section>
</main>
<!--<script src="js/main.js"></script>-->
<script src="js/reflections.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
initReflections();
});
</script>
</body>
</html>