Skip to content

Instantly share code, notes, and snippets.

@imrubyist
Last active July 9, 2020 01:47
Show Gist options
  • Save imrubyist/33d5122f8ab3ad7710c38b815b1f733b to your computer and use it in GitHub Desktop.
Save imrubyist/33d5122f8ab3ad7710c38b815b1f733b to your computer and use it in GitHub Desktop.
Create AMP in Rails powered website - samples_controller.rb
# app/controllers/samples_controller.rb
Class SamplesController
# other existing methods
def show
# your existing codes
respond_to do |format|
format.html
format.amp { render 'amp/samples/show.amp', layout: 'amp/layouts/application' }
end
end
# other existing methods
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment