diff --git a/bookwyrm/templates/feed/feed.html b/bookwyrm/templates/feed/feed.html
index b7ff6e25..76afea7e 100644
--- a/bookwyrm/templates/feed/feed.html
+++ b/bookwyrm/templates/feed/feed.html
@@ -19,7 +19,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 %}
@@ -31,9 +31,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 %}