diff options
author | Adam Mathes <adam@trenchant.org> | 2018-07-04 14:58:43 -0700 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2018-07-04 14:58:43 -0700 |
commit | ee5bf1d50b9165729d0c61f7d1f968949e3e0638 (patch) | |
tree | 2c95b0a2a7563d7882712676f99d78cd6f563d93 /static | |
parent | d0911491b52a56f713da9ebe26f993bf786cce84 (diff) | |
download | neko-ee5bf1d50b9165729d0c61f7d1f968949e3e0638.tar.gz neko-ee5bf1d50b9165729d0c61f7d1f968949e3e0638.tar.bz2 neko-ee5bf1d50b9165729d0c61f7d1f968949e3e0638.zip |
enable feed export from web interface
Diffstat (limited to 'static')
-rw-r--r-- | static/ui.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/static/ui.html b/static/ui.html index bf533df..84d6629 100644 --- a/static/ui.html +++ b/static/ui.html @@ -27,8 +27,16 @@ <h4 onclick="$('#feeds').toggle();">Feeds</h4> <ul id="feeds" style="display: none;"> </ul> - </div> + <h4 onclick="$('#export').toggle();">Export</h4> + <ul id="export" style="display: none;"> + <li><a href="/export/opml">opml</a></li> + <li><a href="/export/text">text</a></li> + <li><a href="/export/json">json</a></li> + </ul> + + </div> + </div> <div id="c"> |