RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: evgenii
Goog question from Brandon Williams. Can Jbuilder templates be used inside of layouts?
Maximum that I have been to achieve is this:
# v1.json.jbuilder - layout json.request do |json| json.url "https://api.storyful.com/stories.json" json.status 200 end json.data JSON.parse(yield) # show.json.jbuilder - action view json.test 'test form show'
Goog question from Brandon Williams. Can Jbuilder templates be used inside of layouts?
Maximum that I have been to achieve is this: