diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-05 11:13:17 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-05 11:13:17 +0300 |
| commit | a78d332080c77a5dd0d8e20cd59ec4561c2b0dda (patch) | |
| tree | 922a22306d315ed1dc0155401373a368d836c618 /web/index.html | |
| parent | 48b02fbed5d519ca293537cd779127fec50735ce (diff) | |
Add frontend podcast support: API wrappers, episode cards, feed manager modal
Diffstat (limited to 'web/index.html')
| -rw-r--r-- | web/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html index 00300f0..f3e37a1 100644 --- a/web/index.html +++ b/web/index.html @@ -232,9 +232,36 @@ <div class="flex gap-2 mt-3"> <button id="admin-rescan" class="btn btn-primary btn-sm">Trigger rescan</button> <button id="admin-trash" class="btn btn-danger btn-sm">View trash</button> + <button id="admin-podcasts" class="btn btn-primary btn-sm">Podcasts</button> </div> </div> </div> + +<!-- Podcast Manager Modal --> +<div id="podcast-modal" class="modal-overlay" role="dialog" aria-modal="true" aria-labelledby="podcast-title"> + <div class="modal modal-wide"> + <div class="modal-header"> + <h3 id="podcast-title">Podcast Feeds</h3> + <div class="spacer"></div> + <button id="podcast-close" class="icon-btn" aria-label="Close">✕</button> + </div> + <div class="flex gap-4 flex-wrap"> + <section class="flex-1-18"> + <h4 class="my-1 text-90">Subscribe</h4> + <form id="podcast-form" class="mt-2"> + <input id="podcast-url" type="url" placeholder="https://example.com/feed.xml" required autocomplete="off"> + <input id="podcast-name" type="text" placeholder="Folder name (optional)" autocomplete="off"> + <button type="submit" class="btn btn-primary btn-sm mt-1">Subscribe</button> + </form> + </section> + <section class="flex-1-18"> + <h4 class="my-1 text-90">Active Feeds</h4> + <div id="podcast-list"></div> + </section> + </div> + </div> +</div> + <!-- Shares Modal --> <div id="shares-modal" class="modal-overlay" role="dialog" aria-modal="true" aria-labelledby="shares-title"> <div class="modal modal-wide"> |
