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

Blog Articles

Create, edit, and remove blog posts.

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.

Create the first blog post.

{% endif %}
{% endblock content %}