diff --git a/bookwyrm/templates/basic_layout.html b/bookwyrm/templates/basic_layout.html deleted file mode 100644 index febb1722..00000000 --- a/bookwyrm/templates/basic_layout.html +++ /dev/null @@ -1,274 +0,0 @@ -{% load layout %} -{% load i18n %} -{% load static %} - - - - {% block title %}BookWyrm{% endblock %} - {{ site.name }} - - - - - - - - - - {% if preview_images_enabled is True %} - - {% else %} - - {% endif %} - - - - - - {% block opengraph_images %} - {% include 'snippets/opengraph_images.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 %} - -
-
- {# almost every view needs to know the user shelves #} - {% with request.user.shelf_set.all as user_shelves %} - {% block content %} - {% endblock %} - {% endwith %} -
-
- -
- - -
-{% endblock %} - - - - - - - - - -{% block scripts %}{% endblock %} - - - -