I'm working with nanoc and I want my index.html to point to specific layout so I created that layout and it is called nosidebar.html

My Rules looks like:

compile 'index.html' do 
  layout 'nosidebar'
end

and this doesn't seem to work. What am I doing wrong?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I havent done exactly what you are but maybe something like this:

compile '/' do 
  rep.layout 'nosidebar'
end
link|improve this answer
Thanks for trying to help. That didn't work though. – NoahClark Mar 10 '11 at 22:19
This works once you understand the rules. – NoahClark Mar 13 '11 at 0:38
feedback

You can always add something like:

compile '*' do
  if item.binary?
    # don’t filter binary items
  else
    layout item[:layout] || 'default'
  end
end

That means you can just decide the template on the file by adding:

---
layout: nosidebar
---

at the yaml front matter of the file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.