diff --git a/app/views/news_updates/_listing.html.erb b/app/views/news_updates/_listing.html.erb
index 547cf9015..8a3b3955f 100644
--- a/app/views/news_updates/_listing.html.erb
+++ b/app/views/news_updates/_listing.html.erb
@@ -1,11 +1,13 @@
<% cache("news-updates", :expires_in => 1.hour) do %>
-
-
- <% NewsUpdate.recent.each do |news_update| %>
- - <%= news_update.created_at.strftime("%b %d") %>: <%= news_update.message.html_safe %>
- <% end %>
-
+ <% if NewsUpdate.recent.any? %>
+
+
+ <% NewsUpdate.recent.each do |news_update| %>
+ - <%= news_update.created_at.strftime("%b %d") %>: <%= news_update.message.html_safe %>
+ <% end %>
+
-
close
-
+
close
+
+ <% end %>
<% end %>