Skip to content

Instantly share code, notes, and snippets.

@elvisgiv
Last active May 11, 2016 10:04
Show Gist options
  • Save elvisgiv/248256da8456bd63350fe8c49370c34f to your computer and use it in GitHub Desktop.
Save elvisgiv/248256da8456bd63350fe8c49370c34f to your computer and use it in GitHub Desktop.

#Custom layout ##Controller

../app/controllers/search_controller.rb

class SearchController < ApplicationController

  layout "blank"

  def index
    q = params[:q]
    @items = Document.search_me(q)
  end

end
  • layout "blank" - принудительно указан используемый layout для этого контроллера

##Layout

../app/views/layouts/blank.html.haml

!!!
%html
  %head
    = stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => false
    = javascript_include_tag 'application', 'data-turbolinks-track' => false
    = csrf_meta_tags
  %body
    = yield
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment