{% load layout %} {% load sass_tags %} {% load i18n %} {% load static %} {% block title %}BookWyrm{% endblock %} - {{ site.name }} {% block opengraph %} {% include 'snippets/opengraph.html' %} {% endblock %} {% block head_links %}{% endblock %} {% block body %} {% if request.user.is_authenticated and active_announcements.exists %}
{% for announcement in active_announcements %} {% include 'snippets/announcement.html' with announcement=announcement %} {% endfor %}
{% endif %}
{% if request.user.moved_to %} {% include "moved.html" %} {% else %} {# almost every view needs to know the user shelves #} {% with request.user.shelf_set.all as user_shelves %} {% block content %} {% endblock %} {% endwith %} {% endif %}
{% include 'snippets/footer.html' %} {% endblock %} {% block scripts %}{% endblock %}