How can I use yield for template inheritance in erb? I want to use erb in a plain ruby CGI script and want to use a base template and subtemplate like it Rails with the application template does.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I don't think you can - Rails provides that infrastructure as part of actionpack. What you may be able to do is take actionpack and add it into your script. Alternatively you could roll a lightweight templating system yourself. Alternatively alternatively use Rails or Merb or Sinatra. |
|||
|
It's important that the call to |
|||
|
|
Check out Tilt (http://github.com/rtomayko/tilt/). It's the gem that handles templating in Sinatra and it provides ERB yields along with many other nice features. |
|||
|
|