Trying to include a Handlebars template in my_view.php results in the rendered template being placed in DOM outside of the Simplicity template.
<script type="text/x-handlebars" data-template-name="todos"><h1>Code</h1></script>
For instance, will appear as
<body><div class="container">my_view.php should render here</div><h1>code</h1></body>
Can you suggest a workaround for this?