aboutsummaryrefslogtreecommitdiffstats
path: root/web/dist/vanilla/index.html
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 22:23:54 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 22:23:54 -0800
commit860e1ecb570bda229b6a64fef905923898e0f832 (patch)
tree261c4781766e3d6d273809625cc4e364ab07b925 /web/dist/vanilla/index.html
parent47c43577ead8721008b858232511b2f65e0ed574 (diff)
downloadneko-860e1ecb570bda229b6a64fef905923898e0f832.tar.gz
neko-860e1ecb570bda229b6a64fef905923898e0f832.tar.bz2
neko-860e1ecb570bda229b6a64fef905923898e0f832.zip
Audit and reduce Go dependencies: replace go.rice with embed, pflag with flag
Diffstat (limited to 'web/dist/vanilla/index.html')
-rw-r--r--web/dist/vanilla/index.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/web/dist/vanilla/index.html b/web/dist/vanilla/index.html
new file mode 100644
index 0000000..c504f6f
--- /dev/null
+++ b/web/dist/vanilla/index.html
@@ -0,0 +1,49 @@
+<!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