DEV Community

Cover image for Rails Action Pack Variants

Rails Action Pack Variants

Deepak Singh on August 06, 2018

Recently on one of the projects at Eloquent Studio, I needed to render two very different view templates for desktop and mobile, even Bootstrap res...
Collapse
 
amit_savani profile image
Amit Patel
render variants: [:phone, :tablet]
Enter fullscreen mode Exit fullscreen mode

is shortcut for for

format.html do |html|
    html.phone
    html.tablet
  end
Enter fullscreen mode Exit fullscreen mode
Collapse
 
hasantezcan profile image
Hasan TEZCAN

Nice explanation, thanks.