FIX: Hide empty popular/recent sections in 404 page (#10811)

This commit is contained in:
Penar Musaraj 2020-10-02 15:11:15 -04:00 committed by GitHub
parent e363b113a8
commit 97f34d7b71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
<div class="row page-not-found-topics">
<% if @top_viewed.count > 0 %>
<div class="popular-topics">
<h2 class="popular-topics-title"><%= t 'page_not_found.popular_topics' %></h2>
<% @top_viewed.each do |t| %>
@ -8,6 +9,8 @@
<% end %>
<a href="<%= path "/top" %>" class="btn btn-default"><%= t 'page_not_found.see_more' %>&hellip;</a>
</div>
<% end %>
<% if @recent.count > 0 %>
<div class="recent-topics">
<h2 class="recent-topics-title"><%= t 'page_not_found.recent_topics' %></h2>
<% @recent.each do |t| %>
@ -17,4 +20,5 @@
<% end %>
<a href="<%= path "/latest" %>" class="btn btn-default"><%= t 'page_not_found.see_more' %>&hellip;</a>
</div>
<% end %>
</div>