The (arguably counterintuitive) syntax for interpolating templates into
other templates using jqtpl
and Express is:
{{partial(<variables>) "<inner-template>" }}
Concretely, if we have template X and we want to interpolate
template Y with variable foo = "bar", then
template X contains
{{partial({foo:"bar"}) "Y" }}
This is probably not of interest to you, unless you just spent 10 minutes trying to work this out from the sparse (and I think in this case wrong; bug reported) documentation.

Leave a comment