mewizard-blog / about / site.html
site.html
Raw
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="../main.css?nocache=1756058743">
    <link rel="icon" type="image/x-icon" href="./assets/icons/favicon.ico">
    <title>mewizard</title>
</head>
<body>
    <header>
      <a href="../home.html" class="title"><img src="../assets/title.png" alt="mewizard"></a>
    </header>
    <div class="grid">

       <div class="sidebar">
            <nav>
                <ul>
                  <a href="/home.html" class="navlink"><li class="navtext navtext--first">home</li></a>

                  <a class="navlink dropdown__btn" id="about-btn"><li class="navtext">about</li></a>
                  <div class="dropdown__menu" id="about-dropdown">
                    <a href="/about/me.html" class="navlink"><li class="navtext">me</li></a>
                    <a href="/about/site.html" class="navlink"><li class="navtext navtext--current">the site</li></a>
                  </div>

                  <a href="/work.html" class="navlink"><li class="navtext">my work</li></a>
                  <a href="/blog.html" class="navlink"><li class="navtext">blog</li></a>
                  <a href="/links.html" class="navlink"><li class="navtext">links</li></a>
                  <a href="/guestbook.html" class="navlink"><li class="navtext">guestbook</li></a>
                </ul>
                <script>
                    let dropdownMenu = document.getElementById("about-dropdown");
                    let dropdownButton = document.getElementById("about-btn")
                    dropdownMenu.style.display = "block";
                    dropdownButton.classList.toggle("dropdown__btn--active");
                </script>
                <script src="/scripts/toggleDropdown.js"></script>
            </nav>
        </div>

        <div class="content">

            <div class="section">           
                <h2>About This Site</h2>
                <p>
                    I created this website in June 2025. The coding, design, and graphics are done by me unless otherwise noted. 
                    I used HTML/CSS/JS and 11ty/Nunjucks to make it happen. Source code for the site is available 
                    <a href="https://gitfront.io/r/mads-bohn/6KUAzrKro2St/mewizard-blog/">here</a>, and my static website 
                    generator's code lives <a href="https://github.com/mads-bohn/static-blog-generator">here</a>.
                </p>
            </div>
            
            <div class="section">           
                <h2>To-Do List</h2>
                <ul>
                    <li>Responsive design</li>
                    <li>Create and style and art gallery</li>
                    <li>Implement 11ty for pages other than my blog</li>
                </ul>
            </div> 

            <div class="section">
                <h2>Changelog</h2>
                <ul>
                    <li class="post-listing">
                        Zines under "my work"
                        <time datetime="2025-11-10" class="post-listing__time"> 11-10-25 </time>
                    </li>
                    <li class="post-listing">
                        Splash page
                        <time datetime="2025-10-04" class="post-listing__time"> 10-04-25 </time>
                    </li> 
                    <li class="post-listing">
                        Zesty new theme
                        <time datetime="2025-09-06" class="post-listing__time"> 09-06-25 </time>
                    </li> 
                    <li class="post-listing">
                        Fixed responsive design bug
                        <time datetime="2025-08-24" class="post-listing__time"> 08-24-25 </time>
                    </li>                    
                    <li class="post-listing">
                        Added "my work" page
                        <time datetime="2025-07-19" class="post-listing__time"> 07-19-25 </time>
                    </li>
                    <li class="post-listing">
                        Separated about me and about site pages
                        <time datetime="2025-07-02" class="post-listing__time"> 07-02-25 </time>
                    </li>
                </ul>
            </div>   

            <div class="section">           
                <h2>Credits</h2>
                <ul>
                    <li>Stats widget adapted from Max's <a href="https://maxpixels.moe/resources/nekoweb-stats/" target="_blank">Nekoweb stats widget</a></li>
                    <li>Guestbook by <a href="https://atabook.org/" target="_blank">Atabook</a></li>
                    <li>Windows 95 styling from <a href="https://jdan.github.io/98.css/">98.css</a></li>
                </ul>
            </div> 

        </div>        
    </div>
</body>
</html>