aboutsummaryrefslogtreecommitdiff
path: root/source/templates/articles.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-15 08:20:00 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-15 08:20:00 +0100
commit9a6fe2bf696c4c364518159735f4f5d12c666681 (patch)
treec540d7d1cf76542627673ef36490c641bb02f50f /source/templates/articles.html
parentUpdated revision date (diff)
downloadnewspipe-9a6fe2bf696c4c364518159735f4f5d12c666681.tar.gz
newspipe-9a6fe2bf696c4c364518159735f4f5d12c666681.tar.bz2
newspipe-9a6fe2bf696c4c364518159735f4f5d12c666681.zip
Reaorganization of folders for the CSS, templates and pictures.
Diffstat (limited to 'source/templates/articles.html')
-rw-r--r--source/templates/articles.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/source/templates/articles.html b/source/templates/articles.html
deleted file mode 100644
index cbba2508..00000000
--- a/source/templates/articles.html
+++ /dev/null
@@ -1,39 +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>
- <br />
- %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="/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>
- <br />
- %endfor
- <h4><a href="/">All feeds</a></h4> \ No newline at end of file
bgstack15