{% extends "base.html" %} {% block title %}Articles - MV+{% endblock %} {% block content %}
{% if articles %}
{% for article in articles %}

{{ article.name }}

Click to read the full article

{% endfor %}
{% else %}

No articles available at this time.

{% endif %}
{% endblock %}