index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. layout: index
  3. title: Amber Smalltalk
  4. ---
  5. <div class="box">
  6. <h2>Client-side usage</h2>
  7. <div class="content">
  8. <p>Load the full Amber Smalltalk environment with the IDE in your page:</p>
  9. {% highlight html %}<script src="js/amber.js" type="text/javascript"></script>
  10. <script type="text/javascript"> loadAmber()</script>{% endhighlight %}
  11. <p>Or the deployment JavaScript file only (without the Smalltalk sources, parser, compiler and IDE):</p>
  12. {% highlight html %}<script src="js/amber.js" type="text/javascript"></script>
  13. <script type="text/javascript"> loadAmber({deploy: true})</script>{% endhighlight %}
  14. <p>Read the <a href="#documentation">documentation</a> to learn more about writing applications in Amber.</p>
  15. </div>
  16. </div>
  17. <div class="box last">
  18. <h2 id="download">Download</h2>
  19. <div class="content">
  20. <p>You can get a copy of Amber from github or clone the <a href="http://github.com/NicolasPetton/amber">git repository</a>.</p>
  21. <a href="http://github.com/NicolasPetton/amber/zipball/master">
  22. <img border="0" width="90" src="http://github.com/images/modules/download/zip.png"></a>
  23. <a href="http://github.com/NicolasPetton/amber/tarball/master">
  24. <img border="0" width="90" src="http://github.com/images/modules/download/tar.png"></a>
  25. </div>
  26. </div>