{% if articles %} {% for article in articles %}
{% with article.articleStatus as result %} {% ifequal article.Unread result %}
{% icon "mail-mark-read" small _("Mark as Read") %}
{% endifequal %} {% ifequal article.Read result %}
{% icon "mail-mark-unread" small _("Mark as Unread") %}
{% endifequal %} {% endwith %} {% if article.important %}
{% icon "mail-message" small _("Remove Important Status") %}
{% else %}
{% icon "mail-mark-important" small _("Mark as Important") %}
{% endif %}
{% icon "window-new" small _("Open Link in External Browser") %}
{% icon "tab-new" small _("Open In Background Tab") %}
{% icon "mail-message-new" small _("Send File Address") %}
{% icon "mail-message-new" small _("Send Link Address") %}
{% icon "edit-delete" small _("Delete Article") %}
{% if article.imageFeed %} {{ article.imageFeed|safe }} {% endif %} {% if article.strippedTitle %}
{{ article.strippedTitle|safe }}
{% endif %} {%if article.articlePubDate %}
{{ dateI18n }}:
{{ article.articlePubDate }}
{% endif %} {% if article.author %}
{{ authorI18n }}:
{{ article.author|safe }}
{% endif %} {% if article.enclosure %}
{{ enclosureI18n }}:
{{ article.enclosure|safe }}
{% endif %}
{% if article.content %}
{{ article.content|safe }}
{% endif %} {% if article.articleCompleteStoryLink %}
{{ completeStoryI18n }}
{% endif %} {% endfor %} {% endif %}