diff --git a/bookwyrm/templates/book/book.html b/bookwyrm/templates/book/book.html
index 0d908110..0275eb1a 100644
--- a/bookwyrm/templates/book/book.html
+++ b/bookwyrm/templates/book/book.html
@@ -296,3 +296,7 @@
{% endblock %}
+
+{% block scripts %}
+
+{% endblock %}
diff --git a/bookwyrm/templates/feed/feed.html b/bookwyrm/templates/feed/feed.html
index 77b593fe..88fffbc7 100644
--- a/bookwyrm/templates/feed/feed.html
+++ b/bookwyrm/templates/feed/feed.html
@@ -31,7 +31,7 @@
{# announcements and system messages #}
-{% if request.user.show_goal and not goal and tab == 'home' %}
+{% if request.user.show_goal and not goal and tab == 'home' and not activities.number > 1 %}
{% now 'Y' as year %}
{% include 'snippets/goal_card.html' with year=year %}
@@ -43,9 +43,10 @@
{% if not activities %}
{% trans "There aren't any activities right now! Try following a user to get started" %}
{% endif %}
+
{% for activity in activities %}
-{% include 'snippets/status/status.html' with status=activity %}
+ {% include 'snippets/status/status.html' with status=activity %}