1
0

index.html 726 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{%= title %}</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta name="author" content="{%= author_name %}" />
  7. <script type='text/javascript' src='the.js'></script>
  8. </head>
  9. <body>
  10. <script type='text/javascript'>
  11. require(['app'], function (smalltalk) {
  12. smalltalk.initialize({
  13. //used for all new packages in IDE
  14. 'transport.defaultAmdNamespace': "{%= namespace %}"
  15. });
  16. });
  17. </script>
  18. <button onclick="require('amber/helpers').globals.Browser._open()">legacy IDE</button>
  19. <button onclick="require('amber/helpers').popupHelios()">Helios IDE</button>
  20. </body>
  21. </html>