{% load layout %}{% load i18n %}{% load humanize %} {% block title %}BookWyrm{% endblock %} | {{ site.name }} {% if active_announcements.exists %}
{% for announcement in active_announcements %}
{% if announcement.event_date %} {{ announcement.event_date|naturalday|title }}: {% endif %} {{ announcement.preview }}
{% trans "Open" as button_text %} {% include 'snippets/toggle/open_button.html' with text=button_text controls_text="announcement" class="is-small" controls_uid=announcement.id icon_with_text="arrow-down" %} {% trans "Close" as button_text %} {% include 'snippets/toggle/close_button.html' with text=button_text controls_text="announcement" class="is-small" controls_uid=announcement.id icon_with_text="arrow-up" %}
{% endfor %}
{% endif %}
{% block content %} {% endblock %}
{% block scripts %}{% endblock %}