handlebars-extend-block
Create extend blocks for handlebars allowing partials to inject text into parent elements. This is generally useful for script and style tags.
example
var handlebars = ;var extend = ; handlebars = ;
Layout File
{{title}} {{{block "stylesheets"}}} {{{body}}} post body {{{block "scripts"}}}
Partial
{{#extend "stylesheets"}}{{/extend}} let the magic begin {{#extend "scripts"}}{{/extend}}