Skip to content

Instantly share code, notes, and snippets.

@amcaplan
Created April 2, 2014 04:21
Show Gist options
  • Save amcaplan/4c382886cc1e67904291 to your computer and use it in GitHub Desktop.
Save amcaplan/4c382886cc1e67904291 to your computer and use it in GitHub Desktop.
Helper Method to Generate Content Divs
module MealsHelper
def content_div(id, partial_name, extra_class = nil, f)
content_tag :div, (render partial: partial_name, locals: {f: f}),
class: "content #{extra_class}", id: id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment