index.html 594 B

12345678910111213141516171819202122232425
  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='node_modules/amber/js/amber.js'></script>
  8. </head>
  9. <body>
  10. <script type='text/javascript'>
  11. loadAmber({
  12. packages: ['{%= name %}'],
  13. packageHome: './',
  14. ready: function() {
  15. $(function() {
  16. smalltalk.Browser._open();
  17. });
  18. }
  19. });
  20. </script>
  21. </body>
  22. </html>