Yesterday's Tomorrows

Semper Contemporarius
${date}
% for entry in news:
% if entry.img != " ": img % endif
${entry.title}
${entry.source}
${entry.summary}
${entry.svg}
% endfor

Weather

<% daycount = 0 curr_day = "Today" %>
Today
% for period in forecast: % if (daycount <= 3) and (period["day"] != curr_day): <% daycount += 1 curr_day = period["day"] %>
${period["day"]}
% elif period["day"] != curr_day: <% daycount += 1 %> % endif % if daycount <= 4:
${period['symbol']}

${period["period"]}

${period["mintemp"]} – ${period["maxtemp"]}

% endif % endfor
% if len(inbox) > 0:

Post

% for msg in inbox:
${msg["fromname"]} ${msg["fromaddr"]}
${msg["subject"]}
${msg["date"]}
mark as spam
delete
read
% endfor
% endif