Handlebars:
Template
{{#*inline "myPartial"}}
  My Content
{{/inline}}
{{#each people}}
  {{> myPartial}}
{{/each}}
Preparation-Script
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
Input
{
  people: [
    { firstname: "Nils" },
    { firstname: "Yehuda" },
  ],
}
Output
    My Content
    My Content
Last Updated: 2/25/2020, 4:23:24 PM