{% extends "layout.html" %} {% import "macros.html" as macros %} {% block page_title %}Entry: {{ entry.title or entry.link or entry.id }}{% endblock %} {% block main_title %}Entry: {{ entry.title or entry.link or entry.id }}{% endblock %} {% block body %} {% set feed = entry.feed %}
{# TODO: Also show summary. #} {# TODO: text/plain loses formatting. #} {# TODO: This allows iframes to show; is it safe? #} {# TODO: This should be styled somehow. #} {# TODO: h1 inside article is as big as the h1 in the header. #} {# TODO: Images are too wide. #} {% set content = none %} {% if entry.content %} {% set content = ( ( entry.content | selectattr('type', 'equalto', 'text/html') | first ) or ( entry.content | selectattr('type', 'equalto', 'text/xhtml') | first ) or ( entry.content | selectattr('type', 'equalto', 'text/plain') | first ) ) %} {% if content %} {% set content = content.value %} {% endif %} {% elif entry.summary %} {% set content = entry.summary %} {% endif %} {% if content %}
{{ content | safe }}
{% else %}

no content

{% endif %}
{% endblock %}