diff --git a/app/views/asciicasts/_other_by_user.html.slim b/app/views/asciicasts/_other_by_user.html.slim index e4d215a..6ccc55e 100644 --- a/app/views/asciicasts/_other_by_user.html.slim +++ b/app/views/asciicasts/_other_by_user.html.slim @@ -1,4 +1,6 @@ - if @asciicast.other_by_user.any? - .other-asciicasts - h2 More by #{@asciicast.author_link} - = render 'previews', asciicasts: @asciicast.other_by_user, per_row: 3 + section.odd + .container + .other-asciicasts + h2 More by #{@asciicast.author_link} + = render 'previews', asciicasts: @asciicast.other_by_user, per_row: 3 diff --git a/app/views/asciicasts/show.html.slim b/app/views/asciicasts/show.html.slim index 8448e5a..efe61bb 100644 --- a/app/views/asciicasts/show.html.slim +++ b/app/views/asciicasts/show.html.slim @@ -68,6 +68,4 @@ .container .content = @asciicast.description - section.odd - .container - = render 'other_by_user' + = render 'other_by_user'