| 123456789101112131415161718192021222324252627282930 | 
							- <!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>
 
-   <p>Hi, {%= author_name %}! Welcome to Amber project: "{%= title %}".</p>
 
-   <p>This is the place for your application's HTML. After getting familiar with Amber,
 
-       just remove this welcome contents from index.html and replace it with your own.</p>
 
-   <button id="amber-with">Hello from TagBrush >> with:</button>
 
-   <button id="jquery-append">Hello from jQuery append</button>
 
-   <ol id="output-list"></ol>
 
-   <script type='text/javascript'>
 
-       require(['app'], function (amber) {
 
-           amber.initialize({
 
-             //used for all new packages in IDE
 
-             'transport.defaultAmdNamespace': "{%= namespace %}"
 
-           });
 
-           require(["amber-ide-starter-dialog"], function (dlg) { dlg.start(); });
 
-           amber.globals.{%= name %}._start();
 
-       });
 
-   </script>
 
-   </body>
 
- </html>
 
 
  |