ページにカスタム backbone.js スクリプトを追加していますが、ページの最後に配置する必要があります。
ここで説明されているように、HTML ヘッドにスクリプトを追加するためのソリューションを見てきました:テンプレートをエンライブ – ヘッド セクションに追加
残念ながら、ページの下部にスクリプトを追加する必要があります。
<html>
<head><!-- all the normal css and js scripts--></head>
<body>
<div> <!-- html content that will be used by my scripts --> </div>
<!-- this is where i want to append custom javascripts -->
</body>
</html>