diff options
author | Adam Mathes <adam@trenchant.org> | 2018-04-08 08:51:26 -0700 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2018-04-08 08:51:26 -0700 |
commit | cd1509967d7dafbf2d1a051206e368bd3aa5e179 (patch) | |
tree | dbcf7629eaaa3e04409c1c949072ebaf06d9436e /static | |
parent | e0702a70437eea543aaa51264272dcbc3d652779 (diff) | |
download | neko-cd1509967d7dafbf2d1a051206e368bd3aa5e179.tar.gz neko-cd1509967d7dafbf2d1a051206e368bd3aa5e179.tar.bz2 neko-cd1509967d7dafbf2d1a051206e368bd3aa5e179.zip |
refactor exporter, add json/opml export formats
Diffstat (limited to 'static')
-rw-r--r-- | static/feeds.tmpl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/static/feeds.tmpl b/static/feeds.tmpl new file mode 100644 index 0000000..fb089fd --- /dev/null +++ b/static/feeds.tmpl @@ -0,0 +1,13 @@ +<html> +<head> +<title>neko exported feeds</title> +</head> +<body> +<h1>neko exported feeds</h1> +<ul> +{{ range . }} +<li><a href="{{.WebUrl}}">{{.Title}}</a> | <a href="{{.Url}}">xml</a></li> +{{ end }} +</ul> +</body> +</html>
\ No newline at end of file |