add class for container div on 404 page

This commit is contained in:
Arpit Jalan
2015-02-04 00:40:21 +05:30
parent 9a07945a16
commit 68377ba4ab
2 changed files with 2 additions and 1 deletions

View File

@ -376,6 +376,7 @@ class ApplicationController < ActionController::Base
def build_not_found_page(status=404, layout=false) def build_not_found_page(status=404, layout=false)
category_topic_ids = Category.pluck(:topic_id).compact category_topic_ids = Category.pluck(:topic_id).compact
@container_class = "container not-found-container"
@top_viewed = Topic.where.not(id: category_topic_ids).top_viewed(10) @top_viewed = Topic.where.not(id: category_topic_ids).top_viewed(10)
@recent = Topic.where.not(id: category_topic_ids).recent(10) @recent = Topic.where.not(id: category_topic_ids).recent(10)
@slug = params[:slug].class == String ? params[:slug] : '' @slug = params[:slug].class == String ? params[:slug] : ''

View File

@ -35,7 +35,7 @@
</div> </div>
</div> </div>
</header> </header>
<div id="main-outlet" class="container"> <div id="main-outlet" class="<%= @container_class ? @container_class : 'container' %>">
<%= yield %> <%= yield %>
</div> </div>
</section> </section>