File size: 1,413 Bytes
fcb8638
aee396f
baff9ac
fcb8638
aee396f
 
 
 
 
fcb8638
baff9ac
fcb8638
aee396f
 
 
 
baff9ac
 
 
 
 
aee396f
 
 
fcb8638
aee396f
 
 
 
 
fcb8638
baff9ac
 
aee396f
 
 
 
 
 
 
 
fcb8638
baff9ac
 
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
<!DOCTYPE html>
<html lang="en" data-theme="light">

<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>My Simple Blog</title>
    <meta name="description" content="A premium blog experience deployed on Hugging Face Spaces">
    <link rel="stylesheet" href="styles.css">
</head>

<body>
    <header>
        <div class="nav-container">
            <a href="#" class="logo">MyBlog.</a>
            <button class="theme-toggle" id="themeToggle" aria-label="Toggle Dark Mode">
                <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
                    stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
                    class="moon-icon">
                    <path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
                </svg>
            </button>
        </div>
    </header>

    <main>
        <section class="hero">
            <h1>Welcome to My Blog</h1>
            <p>Thoughts on code, design, and deployment 🚀</p>
        </section>

        <div class="post-grid" id="postGrid">
            <!-- Posts will be loaded dynamically -->
        </div>
    </main>

    <footer>
        <p>Made with ❤️ by GitHub Actions + Hugging Face Spaces</p>
    </footer>

    <script src="script.js"></script>
</body>

</html>