diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-05 09:52:36 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-05 09:52:36 +0200 |
| commit | 25b879bd290528adfb47b0042749305a6a408800 (patch) | |
| tree | 22048174696683141c5eaf00a6a4aee34ce8a244 /public/articles | |
| parent | 123b15e442a5a2bd2d73fb9d32cdded69a28f109 (diff) | |
| download | danixxyz-theme-25b879bd290528adfb47b0042749305a6a408800.tar.gz danixxyz-theme-25b879bd290528adfb47b0042749305a6a408800.zip | |
fix: resolve matrix rain opacity, menu styling, and featured articles
Issues fixed:
1. Added missing header.css and footer.css imports to main.css (fixes unstyled menu)
2. Increased matrix rain canvas opacity (0.13→0.25, 0.18→0.35) for better visibility
3. Updated home.html to display featured articles first, then latest 3
4. Removed invalid pseudo-element CSS rule on canvas element
The form on /is/here should now be visible, menu properly styled, and matrix rain more prominent.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'public/articles')
| -rw-r--r-- | public/articles/index.html | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/public/articles/index.html b/public/articles/index.html new file mode 100644 index 0000000..9d424dd --- /dev/null +++ b/public/articles/index.html @@ -0,0 +1,95 @@ +<!DOCTYPE html> +<html lang="en-US" dir="ltr"> +<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script> + <meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<meta name="description" content="Writing about IT, life, and the things that matter."> +<meta name="theme-color" content="#060b10"> +<title>Articles | danilo m.</title> + + + <link rel="stylesheet" href="/css/main.css"> + + + <script src="/js/main.js"></script> + + +</head> +<body> + <div class="reading-progress"></div> + <header><div class="header-container"> + <a href="/" class="site-title">Danilo M.</a> + <div class="header-controls"> + <nav> + <ul> + + <li> + <a href="/articles/" class="active"> + articles + </a> + </li> + + <li> + <a href="/is/" > + about + </a> + </li> + + <li> + <a href="/is/here/" > + contact + </a> + </li> + + </ul> + </nav> + <button id="theme-toggle-btn" class="theme-toggle" aria-label="Toggle theme">🌙 dark</button> + </div> +</div> +</header> + <main> + <div class="container"> + <h1>Articles</h1> + + + <div class="filter-bar"> + <button class="filter-btn active" data-filter="all">All</button> + <button class="filter-btn" data-filter="tech">Tech</button> + <button class="filter-btn" data-filter="life">Life</button> + <button class="filter-btn" data-filter="quote">Quote</button> + <button class="filter-btn" data-filter="link">Link</button> + <button class="filter-btn" data-filter="photo">Photo</button> + </div> + + <div class="feed-list" id="articles-feed"> + + </div> + + </div> + + + + <script defer src="/js/filters.38212ecd54ff7f1fdebf2aebe32e8c248382e80f93dae0761ebbbd03ca28dc5b.js"></script> + +</main> + <footer><div class="footer-container"> + <div class="footer-content"> + <div class="footer-copyright"> + © 2026 Danilo M.. All rights reserved. + </div> + <nav> + <ul class="footer-nav"> + + <li><a href="/articles/">articles</a></li> + + <li><a href="/is/">about</a></li> + + <li><a href="/is/here/">contact</a></li> + + </ul> + </nav> + </div> +</div> +</footer> +</body> +</html> |
