I want to render some variables in my HTML templates after the template has been loaded and rendered by Handlebars. Most variables are available after an AJAX call and I want the template to first load and the data rendered later on, but without re-rendering the whole template. The loaded templates are not wrapped in a Handlebars template <script> tag, they are just plain HTML.
Do I need to wrap all variables that are rendered after the AJAX call in Handlebars <script> tags? Or is there another, more elegant, solution?