I am learning Haml.
My view files are like:
show.html.haml:
.content = render \'meeting_info\', :locals => { :info => @info }
You would use the :locals option if you're calling render from a controller. When calling render from a view, you would simply do this:
:locals
= render 'meeting_info', :info => @info