{% extends "base.html" %} {% block title %}Articles{% endblock %} {% block content %}
{{ articles|length }} articles found.
| Date | Title | Author | Categories |
|---|---|---|---|
| {{ article.pub_date.strftime('%b %d, %Y') }} | {{ article.title }} | {{ article.author }} | {{ article.categories | replace('[', '') | replace(']', '') | replace('"', '') }} |