index.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 type="image/x-icon" rel="shortcut icon" href="/favicon.ico"/>
  9. <link href='http://fonts.googleapis.com/css?family=Istok+Web' rel='stylesheet' type='text/css'>
  10. <script type='text/javascript' src='js/amber.js'></script>
  11. <script type='text/javascript' src='js/lib/showdown.js'></script>
  12. </head>
  13. <body>
  14. <a href="http://github.com/NicolasPetton/amber"><img style="position: absolute; top: 0; left: 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>
  15. <div id="wrapper">
  16. <div id="header">
  17. <div class="main">
  18. <div class="logo">
  19. <img src="images/amber.png"/>
  20. </div>
  21. <ul id="tabs">
  22. <li><a href="./index.html">Overview</a></li> ·
  23. <li><a href="./learn.html">Learn</a></li> ·
  24. <li><a href="./documentation.html">Documentation</a></li> ·
  25. <li><a target="_blank" target="_blank" href="https://github.com/NicolasPetton/amber">Source</a></li>
  26. </ul>
  27. <div class="clear"></div>
  28. </div>
  29. </div>
  30. <div class="teaser">
  31. <div class="main">
  32. <h1>Welcome aboard!</h1>
  33. <div class="column">
  34. <h2>What is Amber?</h2>
  35. <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>
  36. <p>Amber includes an integrated development environment with a class browser, workspace, transcript, object inspector and debugger.</p>
  37. <p>Amber is written in itself, including the compiler, and compiles into efficient JavaScript, mapping one-to-one with the JS equivalent.</p>
  38. <h2>Give it a try!</h2>
  39. <p><b>Try a <button onClick="smalltalk.Browser._open()"> Class browser</button> right now!</b></p>
  40. </div>
  41. <div class="column">
  42. <h2>Getting started</h2>
  43. <p>The <a href="https://github.com/NicolasPetton/amber/wiki">Wiki on GitHub</a> includes a <a href="https://github.com/NicolasPetton/amber/wiki/Getting-started">Getting started</a> tutorial for OSX, Linux and Windows.</p>
  44. <p>If you're new to Smalltalk, You can learn it online with <a href="http://amber-lang.net/learn.html">ProfStef</a>.</p>
  45. <h2>Join the community</h2>
  46. <ul>
  47. <li><a href="http://amber-lang.net">Amber's website</a></li>
  48. <li><a href="https://github.com/NicolasPetton/amber/wiki">Wiki on GitHub</a></li>
  49. <li><a href="http://groups.google.com/group/amber-lang">Mailing list</a></li>
  50. <li>Join us on IRC at #amber-lang on Freenode</li>
  51. </ul>
  52. </div>
  53. <div class="clear"></div>
  54. </div>
  55. </div>
  56. <div id="content">
  57. <div class="main">
  58. <div class="box">
  59. <h2>Client-side usage</h2>
  60. <div class="content">
  61. <p>Load the full Amber Smalltalk environment with the IDE in your page:</p>
  62. <code><pre>&lt;script src="js/amber.js" type="text/javascript"&gt;&lt;/script&gt;
  63. &lt;script type="text/javascript"&gt; loadAmber()&lt;/script&gt;</pre></code>
  64. </div>
  65. <p>Or the deployment JavaScript file only (without the Smalltalk sources, parser, compiler and IDE):</p>
  66. <code><pre>&lt;script src="js/amber.js" type="text/javascript"&gt;&lt;/script&gt;
  67. &lt;script type="text/javascript"&gt; loadAmber({deploy: true})&lt;/script&gt;</pre></code>
  68. </div>
  69. <div class="box last examples">
  70. <h2>Examples</h2>
  71. <div class="content">
  72. <ul>
  73. <li>
  74. <a href="examples/presentation/index.html">
  75. <img src="images/presentation.png" alt="ESUG 2011 presentation"/>
  76. </a>
  77. </li>
  78. <li>
  79. <a href="examples/twitterwall/index.html">
  80. <img src="images/twitterwall.png" alt="Twitter Wall"/>
  81. </a>
  82. </li>
  83. <div class="clear"></div>
  84. </ul>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. <script type='text/javascript'> loadAmber() </script>
  91. </body>
  92. </html>