diff options
author | Adam Mathes <adam@trenchant.org> | 2017-11-20 10:21:05 -0700 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2017-11-20 10:21:05 -0700 |
commit | effcafcb7d2010c4d182b296ff2cf5b55cc91cf5 (patch) | |
tree | 8154c4cd6e7ad1167aafade5277f212aeee3b97a /static/ui.html | |
parent | 1a6516cffc33403b51a8f38af4a574ae94ab2999 (diff) | |
download | neko-effcafcb7d2010c4d182b296ff2cf5b55cc91cf5.tar.gz neko-effcafcb7d2010c4d182b296ff2cf5b55cc91cf5.tar.bz2 neko-effcafcb7d2010c4d182b296ff2cf5b55cc91cf5.zip |
wip img
Diffstat (limited to 'static/ui.html')
-rw-r--r-- | static/ui.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/static/ui.html b/static/ui.html index b977dad..4f7e297 100644 --- a/static/ui.html +++ b/static/ui.html @@ -37,14 +37,18 @@ <span class={{if item.starred}}"unstar"{{else}}"star"{{/if}}>★</span></h2> <p class="dateline" style="clear: both;"> ${ item.publish_date } from <a href="${item.feed_url}">${item.feed_title}</a> - </p> - <div class="description">{{html item.description}}</div> + </p> - <h3>full content</h3> + {{if item.header_image}} <div class="img"><img src="${item.header_image}" /></div> + {{/if}} + <div class="description">{{html item.description}} + <p class="full">⫸</p> + </div> + {{if item.full}} <div class="description">{{html item.full_content}}</div> - - </script> + {{/if}} + </script> <script id="tag_template" type="text/jqtmp"> ${tag.name} ${tag.unread} |