diff --git a/bookwyrm/templates/author/author.html b/bookwyrm/templates/author/author.html
index a7ea9db5..c7fdea0e 100644
--- a/bookwyrm/templates/author/author.html
+++ b/bookwyrm/templates/author/author.html
@@ -34,7 +34,12 @@
{% blocktrans with name=author.name %}Books by {{ name }}{% endblocktrans %}
- {% include 'snippets/book_tiles.html' with books=books %}
+
+ {% for book in books %}
+
+ {% include 'discover/small-book.html' with book=book %}
+
+ {% endfor %}
+
{% endblock %}
-
diff --git a/bookwyrm/templates/snippets/book_tiles.html b/bookwyrm/templates/snippets/book_tiles.html
deleted file mode 100644
index 25249c96..00000000
--- a/bookwyrm/templates/snippets/book_tiles.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
- {% for book in books %}
-
-
-
-
- {% include 'snippets/shelve_button/shelve_button.html' with book=book switch_mode=True %}
-
-
- {% endfor %}
-
-