{% for announcement in active_announcements %}
{% endfor %}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
{{ announcement.title }}
{% if announcement.is_urgent %}
URGENT
{% endif %}
{{ announcement.content|safe }}
{% if announcement.created_at %}
Posted: {{ announcement.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endif %}