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

Blog Articles

New article

{% if articles | length > 0 %} {% for article in articles %} {% endfor %}
Title Status Actions
{{ article.title }} {% if article.published %}Published{% else %}Draft{% endif %} Edit
{% else %}

No articles yet.

{% endif %} {% endblock content %}