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

Blog

Published articles.

{% if logged_in_admin %} Manage blog {% endif %}
{% if articles | length > 0 %}
{% for article in articles %} {% endfor %}
{% else %}

No published posts yet.

Published articles will appear here.

{% endif %}
{% endblock content %}