<%inherit file="base.html"/> <%block name="head"> <%block name="title">Articles from some sites <%block name="content"> % for article in articles:

% if article.get('fromrss', 0): % if len(article['icon']): % endif % else: % endif % if article.get('fromrss', 0): ${article['title']} % else: ${article['title']} % endif

% if len(article['summary']): ${article['summary']} % else: No summary text available. % endif
Open article in new tab
% if article['liked']: % else: % endif % if article['disliked']: % else: % endif

% endfor