diff --git a/bookwyrm/templates/snippets/covers_shelf.html b/bookwyrm/templates/snippets/covers_shelf.html
deleted file mode 100644
index 69b8114f1..000000000
--- a/bookwyrm/templates/snippets/covers_shelf.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% load fr_display %}
-
-
-{% for shelf in shelves %}
-{% if shelf.books %}
-
-
{{ shelf.name }}
- {% if shelf.size > shelf.books|length %}
- (See all {{ shelf.size }})
- {% endif %}
-
-
- {% for book in shelf.books %}
-
-
- {% include 'snippets/shelve_button.html' with book=book hide_pulldown=True %}
-
- {% endfor %}
-
-
-{% endif %}
-{% endfor %}
-
diff --git a/bookwyrm/templates/snippets/create_status.html b/bookwyrm/templates/snippets/create_status.html
index 7148ac9b3..57386b791 100644
--- a/bookwyrm/templates/snippets/create_status.html
+++ b/bookwyrm/templates/snippets/create_status.html
@@ -28,7 +28,18 @@
diff --git a/bookwyrm/templates/snippets/rate_form.html b/bookwyrm/templates/snippets/rate_form.html
deleted file mode 100644
index 7725aabb9..000000000
--- a/bookwyrm/templates/snippets/rate_form.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% load fr_display %}
-Rating
-
-
- {% for i in '12345'|make_list %}
-
-
- {% endfor %}
-
-
diff --git a/bookwyrm/templates/snippets/tabs.html b/bookwyrm/templates/snippets/tabs.html
deleted file mode 100644
index 32393f3b8..000000000
--- a/bookwyrm/templates/snippets/tabs.html
+++ /dev/null
@@ -1,6 +0,0 @@
-{% for tab in tabs %}
-
-{% endfor %}
-
diff --git a/bookwyrm/templates/snippets/user_preview.html b/bookwyrm/templates/snippets/user_preview.html
deleted file mode 100644
index 3989e908d..000000000
--- a/bookwyrm/templates/snippets/user_preview.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- {% include 'snippets/avatar.html' with user=user %}
- {% include 'snippets/username.html' with user=user %}
- {{ user.username }}
-
- {% if not is_self %}
- {% include 'snippets/follow_button.html' with user=user %}
- {% endif %}
-
-