I'm new to Padrino and have been running through the sample blog tutorial. I'm getting a NoMethodError when using the sample code below
# app/views/posts/index.haml
@title = "Welcome"
#posts= partial 'posts/post', :collection => @posts
I tried some form helpers and they also gave the same error. The 'render' method works though. I'm using Padrino 0.9.23.
Are the Padrino helpers included automatically or do I have to?