index.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Amber Smalltalk</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta name="author" content="Nicolas Petton" />
  7. <link rel="stylesheet" type="text/css" href='css/style.css' />
  8. <link rel="stylesheet" type="text/css" href='css/syntax.css' />
  9. <link type="image/x-icon" rel="shortcut icon" href="/favicon.ico"/>
  10. <link href='http://fonts.googleapis.com/css?family=Istok+Web' rel='stylesheet' type='text/css'>
  11. <script type='text/javascript' src='js/amber.js'></script>
  12. </head>
  13. <body>
  14. <a href="http://github.com/NicolasPetton/amber"><img style="position: absolute; top: 0; lef
  15. t: 0; border: 0;" src="https://assets.github.com/img/bec6c51521dcc8148146135149fe06a9cc737577?repo=&url=http%3A%2F%2Fs3.amazonaws.com%2Fgithub%2Fribbons%2Fforkme_left_darkblue_121621.png&path=" alt="Fork me on GitHub"></a>
  16. <div id="wrapper">
  17. <div id="header">
  18. <div class="main">
  19. <div class="logo">
  20. <img src="images/amber.png"/>
  21. </div>
  22. <ul id="tabs">
  23. <li><a target="_blank" href="http://amber-lang.net/index.html">Overview</a></li> ·
  24. <li><a target="_blank" href="http://amber-lang.net/index.html#download">Download</a></li> ·
  25. <li><a target="_blank" href="http://amber-lang.net/learn.html">Learn</a></li> ·
  26. <li><a target="_blank" href="http://amber-lang.net/documentation.html">Documentation</a></li> ·
  27. <li><a target="_blank" target="_blank" href="https://github.com/NicolasPetton/amber">Source</a></li>
  28. </ul>
  29. <div class="clear"></div>
  30. </div>
  31. </div>
  32. <div class="teaser">
  33. <div class="main">
  34. <h1>Welcome aboard!</h1>
  35. <div class="column">
  36. <h2>What is Amber?</h2>
  37. <p>Amber, formerly known as Jtalk, is an implementation of the Smalltalk-80 language. It is designed to make client-side development faster and easier. It allows developers to write client-side heavy web applications in Smalltalk. </p>
  38. <p>Amber includes an integrated development environment with a class browser, workspace, transcript, object inspector and debugger.</p>
  39. <p>Amber is written in itself, including the compiler, and compiles into efficient JavaScript, mapping one-to-one with the JS equivalent.</p>
  40. <h2>Give it a try!</h2>
  41. <p><b>Try a <button onClick="smalltalk.Browser._open()"> Class browser</button> right now!</b></p>
  42. </div>
  43. <div class="column">
  44. <h2>Don't know Smalltalk yet?</h2>
  45. <p>No problem! You can learn it online with <a href="http://amber-lang.net/learn.html">ProfStef</a></p>
  46. <h2>Join the community</h2>
  47. <ul>
  48. <li><a href="http://amber-lang.net">Amber's website</a></li>
  49. <li><a href="https://github.com/NicolasPetton/amber/wiki">Wiki on GitHub</a></li>
  50. <li><a href="http://groups.google.com/group/amber-lang">Mailing list</a></li>
  51. <li>Join us on IRC at #amber-lang on Freenode</li>
  52. </ul>
  53. </div>
  54. <div class="clear"></div>
  55. </div>
  56. </div>
  57. <div id="content">
  58. <div class="main">
  59. <div class="box">
  60. <h2>Client-side usage</h2>
  61. <div class="content">
  62. <p>Load the full Amber Smalltalk environment with the IDE in your page:</p>
  63. <code><pre>&lt;script src="js/amber.js" type="text/javascript"&gt;&lt;/script&gt;
  64. &lt;script type="text/javascript"&gt; loadAmber()&lt;/script&gt;</pre></code>
  65. </div>
  66. <p>Or the deployment JavaScript file only (without the Smalltalk sources, parser, compiler and IDE):</p>
  67. <code><pre>&lt;script src="js/amber.js" type="text/javascript"&gt;&lt;/script&gt;
  68. &lt;script type="text/javascript"&gt; loadAmber({deploy: true})&lt;/script&gt;</pre></code>
  69. </div>
  70. <div class="box last">
  71. <h2 id="download">Examples</h2>
  72. <div class="content">
  73. <ul>
  74. <li><a href="examples/trysmalltalk/index.html">ProfStef tutorial</a></li>
  75. <li><a href="examples/presentation/index.html">Presentation at ESUG 2011</a></li>
  76. </ul>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. <script type='text/javascript'> loadAmber() </script>
  83. </body>
  84. </html>