Hey people sorry it this seems stupid! I usually code in PHP so this is very different! In PHP I would write...
<?php include 'somefile.php'; ?>
Now in ruby I have my .rhtml which contain instances of <%= Something %> and <% something %> I have two RHTML files one.html and two.rhtml How to I render one within another? I'm not trying to render scripts just plain HTML inside a .rhtml file type.
I have tried <% include('two.rhtml');%> as in http://www.phptoruby.com/tag/include
could someone give my some guidance ?
Many many thanks in advance.