Here is the code in my view to call the partial:
<%= render :partial => "/divbox", :locals => { :smush => "Science" } %>
and now here is what's in _divbox.html.erb:
<div>
<h1> <%= :smush %> </h1>
</div>
I expect HTML output of:
<div>
<h1> Science </h1>
</div>
But instead I get:
<div>
<h1> smush </h1>
</div>
Thanks in advance for your time.