Skip to content

Instantly share code, notes, and snippets.

@kevinhq
Last active July 9, 2020 01:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kevinhq/33d5122f8ab3ad7710c38b815b1f733b to your computer and use it in GitHub Desktop.
Save kevinhq/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