{% extends "base.html" %} {% block title %}News - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block content %}

News

{% if is_admin %}

Post news item

{% endif %} {% if items.is_empty() %}
No news
News items will appear here.
{% else %}
{% for item in items %}

{{ item.title }}

{{ item.created_at.format("%Y-%m-%d %H:%M UTC") }} {% if is_admin %}
{% endif %}
{{ item.content }}
{% endfor %}
{% endif %} {% endblock %}