Hello,
This is my first post here. I want to begin by saying how much I love nanoc, and how much I appreciate the effort that goes into maintaining it etc!
I was looking at the examples in the documentation for the Rendering helper. For instance, the example:
<%= render 'head', :title => 'Foo' %>
Whenever I try something like this, the compiler can't find the 'head' partial, so I'm sure I must be failing to understand something.
The only alternative I can get to work is:
<%= render '/head.*', :title => 'Foo' %>
What am I doing wrong?
Many thanks,
Kevin