{% if active_announcements %}
{% for announcement in active_announcements %}
{{ 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 %}
{% endfor %}
{% endif %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}