diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
| commit | afa87af01c79a9baa539f2992d32154d2a4739bd (patch) | |
| tree | 92c7416db734270a2fee1d72ee9cc119379ff8e1 /web/dist/vanilla/index.html | |
| parent | 3b927e84d200402281f68181cd4253bc77e5528d (diff) | |
| download | neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2 neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip | |
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'web/dist/vanilla/index.html')
| -rw-r--r-- | web/dist/vanilla/index.html | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/web/dist/vanilla/index.html b/web/dist/vanilla/index.html deleted file mode 100644 index c504f6f..0000000 --- a/web/dist/vanilla/index.html +++ /dev/null @@ -1,49 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - -<head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Neko Reader (Vanilla)</title> - <link rel="stylesheet" href="style.css"> - <style> - /* Minimal reset for now, proper styles in style.css */ - body, - html { - margin: 0; - padding: 0; - height: 100%; - font-family: sans-serif; - } - </style> -</head> - -<body> - <div id="app"> - <aside id="sidebar"> - <header> - <h1>🐱 Neko</h1> - </header> - <nav id="feeds-nav"> - <div class="search-container"> - <input type="text" id="search-input" placeholder="Search items..." /> - </div> - <div class="loading">Loading feeds...</div> - </nav> - </aside> - <main id="main"> - <header id="main-header"> - <h2 id="feed-title">All Items</h2> - </header> - <div id="entries-list"> - <div class="loading">Loading items...</div> - </div> - </main> - </div> - <script type="module"> - import { init } from './app.js'; - document.addEventListener('DOMContentLoaded', init); - </script> -</body> - -</html>
\ No newline at end of file |
