diff options
author | Adam Mathes <adam@trenchant.org> | 2018-04-22 18:43:49 -0700 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2018-04-22 18:43:49 -0700 |
commit | 0a6d8c78730f1da263a855d1f17c0ff92ac1070a (patch) | |
tree | 5b55c350f99f499c74d2379d33576763f688d994 /static/ui.html | |
parent | b376d197b51f2e67c314e23b8ac484dc2ae8f4a5 (diff) | |
download | neko-0a6d8c78730f1da263a855d1f17c0ff92ac1070a.tar.gz neko-0a6d8c78730f1da263a855d1f17c0ff92ac1070a.tar.bz2 neko-0a6d8c78730f1da263a855d1f17c0ff92ac1070a.zip |
wip category stuff
Diffstat (limited to 'static/ui.html')
-rw-r--r-- | static/ui.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/static/ui.html b/static/ui.html index a7bd3a4..8604e43 100644 --- a/static/ui.html +++ b/static/ui.html @@ -26,13 +26,12 @@ <h4 onclick="$('#feeds').toggle();">Feeds</h4> <ul id="feeds" style="display: none;"> - <li><a href="/import/">import</a></li> </ul> </div> <div id="c"> - <div id="items"> + <div id="items"> </div> </div> @@ -70,9 +69,14 @@ {{else}} ${feed.url} {{/if}} + </span> + {{if feed.category}} + <i>${feed.category}</i> + {{/if}} + <span class="edit">[edit]</span> - <span class="delete" style="color: red;">[X]</span> + <span class="delete">[x]</span> </script> <script id="controls_template" type="text/jqtmp"> |