diff options
| author | Samuel Johnson <[email protected]> | 2025-11-26 01:55:22 -0500 |
|---|---|---|
| committer | Samuel Johnson <[email protected]> | 2025-11-26 01:55:22 -0500 |
| commit | d740821200f3bb89112ed08af84decf608d91732 (patch) | |
| tree | 8b12316d31983bad71a629a29bd320e41eae3fb5 /ui/html/pages/feed_index.tmpl.html | |
| parent | c72dfab37fd6f0d739ea70d42779b2a8c85e9915 (diff) | |
Add text RSS parser as well
Diffstat (limited to 'ui/html/pages/feed_index.tmpl.html')
| -rw-r--r-- | ui/html/pages/feed_index.tmpl.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ui/html/pages/feed_index.tmpl.html b/ui/html/pages/feed_index.tmpl.html index 59b37d4..2450240 100644 --- a/ui/html/pages/feed_index.tmpl.html +++ b/ui/html/pages/feed_index.tmpl.html @@ -1,11 +1,11 @@ {{define "title"}}RSS Feeds{{end}} -{{define "description"}}"alternative to social media platforms"{{end}} +{{define "description"}}"where I aggregate all the stuff I follow"{{end}} {{define "main"}} <div class="flex_between"> <div class="topline"> <h2>Feeds</h2> - <p>Alternative to social media platforms</p> + <p>Where I aggregate all the stuff I follow</p> </div> <div class="spacer"></div> {{if .IsAuth}} @@ -21,6 +21,11 @@ <input type="text" id="name" name="name"> <label for="url">URL:</label> <input type="text" id="url" name="url"> + <label for="category">Category:</label> + <select id="category" name="category"> + <option value="Text">Text</option> + <option value="YouTube">YouTube</option> + </select> <div class="right"> <input type="submit" value="Submit"> </div> |
