diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-13 10:03:34 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-13 10:03:34 +0200 |
commit | dec57654f8b33e14c92c8f5db504e5a5ec461545 (patch) | |
tree | b6783f6db36be5ec7b4c6bd0253f6379181ca35d /source/templates/articles.html | |
parent | Removed epub module. (diff) | |
download | newspipe-dec57654f8b33e14c92c8f5db504e5a5ec461545.tar.gz newspipe-dec57654f8b33e14c92c8f5db504e5a5ec461545.tar.bz2 newspipe-dec57654f8b33e14c92c8f5db504e5a5ec461545.zip |
Removed static, templates and var files.
Diffstat (limited to 'source/templates/articles.html')
-rw-r--r-- | source/templates/articles.html | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/source/templates/articles.html b/source/templates/articles.html deleted file mode 100644 index d7fcc4d5..00000000 --- a/source/templates/articles.html +++ /dev/null @@ -1,43 +0,0 @@ -## articles.html -<%inherit file="base.html"/> -<% -import utils -%> -<div class="right inner"> - <a href="/mark_as_read/Feed:${feed['feed_id']}">Mark all articles from this feed as read</a> - <br /> - <form method=get action="/search/Feed${feed['feed_id']}"> - <input type="search" name="query" value="" placeholder="Search this feed" maxlength=2048 autocomplete="on"> - </form> - <hr /> -</div> - -<div class="left inner"> - <h1>Articles of the feed <i><a href="/feed/${feed['feed_id']}">${feed['feed_title']}</a></i></h1> - %if articles.count() == 0: - <p>No articles yet.</p> - %else: - <br /> - %endif - %for article in articles: - <% - if article["article_readed"] == False: - not_read_begin, not_read_end = "<b>", "</b>" - else: - not_read_begin, not_read_end = "", "" - - if article["article_like"] == True: - like = """<img src="/static/img/heart.png" title="I like this article!" />""" - else: - like = "" - - article_content = utils.clear_string(article["article_content"]) - if article_content: - description = " ".join(article_content[:500].split(' ')[:-1]) - else: - description = "No description." - %> - ${article["article_date"].strftime('%Y-%m-%d %H:%M')} - <a class="tooltip" href="/article/${feed['feed_id']}:${article['article_id']}" rel="noreferrer" target="_blank">${not_read_begin}${article["article_title"][:150]}${not_read_end}<span class="classic">${description}</span></a> ${like} - <br /> - %endfor - <h4><a href="/">All feeds</a></h4> |