{% extends "base.html" %} {% block title %}Articles{% endblock %} {% block content %}

Articles

{{ articles|length }} articles found.

{% for article in articles %} {% endfor %}
Date Title Author Categories
{{ article.pub_date.strftime('%b %d, %Y') }} {{ article.title }} {{ article.author }} {{ article.categories | replace('[', '') | replace(']', '') | replace('"', '') }}
{% endblock %}