| 123456789101112131415161718192021222324 | <!DOCTYPE html><html>  <head>    <title>{%= title %}</title>    <meta http-equiv="content-type" content="text/html; charset=utf-8" />    <meta name="author" content="{%= author_name %}" />    <script type='text/javascript' src='the.js'></script>  </head>  <body>  <script type='text/javascript'>      require(['app'], function (smalltalk) {          smalltalk.initialize({            //used for all new packages in IDE            'transport.defaultAmdNamespace': "{%= namespace %}"          });      });    </script>    <button onclick="require('amber/helpers').globals.Browser._open()">legacy IDE</button>    <button onclick="require('amber/helpers').popupHelios()">Helios IDE</button>  </body></html>
 |