{% extends 'base.html' %} {% block header %}

{% block title %}Articles{% endblock %}

{% endblock %} {% block content %}

{{name}}

{% for articles in articles %}

{{articles['title']}}

{{articles['author']}}

{{articles['description']}}

{% endfor %} {% endblock %}