From 9a6fe2bf696c4c364518159735f4f5d12c666681 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 15 Mar 2013 08:20:00 +0100 Subject: Reaorganization of folders for the CSS, templates and pictures. --- source/templates/articles.html | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 source/templates/articles.html (limited to 'source/templates/articles.html') 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 -%> -
- Mark all articles from this feed as read -
-
- -
-
-
- -
-

Articles of the feed ${feed['feed_title']}

-
- %for article in articles: - <% - if article["article_readed"] == False: - not_read_begin, not_read_end = "", "" - else: - not_read_begin, not_read_end = "", "" - - if article["article_like"] == True: - like = """ """ - 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')} - ${not_read_begin}${article["article_title"][:150]}${not_read_end}${description} -
- %endfor -

All feeds

\ No newline at end of file -- cgit