{% extends "base.html" %} {% block content %}

{{ category }}

{% if articles %} {% for article in articles | selectattr("category", "eq", "journal") %}

{{ article.title }}

{{ article.content|striptags|truncate(200) }}
{% endfor %} {% endif %} {% endblock %}