header
, inc/header
и ../header
- это просто имена ключей в объекте partials, переданных во время рендеринга, которые имеют значения частичного текста
var tmpl = "{{>header}} {{>inc/header}} {{>../header}}",
data = {},
partials = {
header : "<header>example</header>",
'inc/header' : "<header>xmpl</header>",
'../header' : "whatever"
},
html = Mustache.render(tmpl, data, partials);
document.write(html);
См. Здесь о jsFiddle http://jsfiddle.net/maxbeatty/CWKHe/