I am trying to include a partial inside my template from within a directory.
This works:
{{>header}}
This doesn’t:
{{>inc/header}}
{{>../header}}
Any location other than a sibling doesn’t seem to be picked up. Is this normal?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
header,inc/header, and../headerare just names of keys in the partials object passed in at rendering time that have values of the partial textSee here on jsFiddle http://jsfiddle.net/maxbeatty/CWKHe/