index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{ page.title }}</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=Arapey:400italic,400' rel='stylesheet' type='text/css'>
  11. <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  12. <script type='text/javascript' src='the.js'></script>
  13. <script type='text/javascript'>
  14. require(['app'], function (amber) {
  15. amber.initialize({
  16. //used for all new packages in IDE
  17. 'transport.defaultAmdNamespace': "amber-trysmalltalk"
  18. });
  19. });
  20. </script>
  21. <script type='text/javascript'>
  22. var _gaq = _gaq || [];
  23. _gaq.push(['_setAccount', 'UA-2246313-6']);
  24. _gaq.push(['_trackPageview']);
  25. (function() {
  26. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  27. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  28. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  29. })();
  30. </script>
  31. </head>
  32. <body>
  33. <div id="wrapper">
  34. <div id="social">
  35. <a class="FlattrButton" style="display:none;" rev="flattr;button:compact" href="http://jtalk-project.org"></a>
  36. <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="NicolasPetton">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
  37. <script type="text/javascript">
  38. /* <![CDATA[ */
  39. (function() {
  40. var s = document.createElement('script'), t = document.getElementsByTagName('script')[0];
  41. s.type = 'text/javascript';
  42. s.async = true;
  43. s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
  44. t.parentNode.insertBefore(s, t);
  45. })();
  46. /* ]]> */
  47. </script>
  48. </div>
  49. <div id="header">
  50. <img class="logo" src="images/amber.png" alt="Amber"/>
  51. <div class="main">
  52. <h1>Amber</h1>
  53. <h2>A Web developer's best friend.</h2>
  54. </div>
  55. <div id="links">
  56. <a href="https://github.com/amber-smalltalk/amber"><img src="images/github.png" alt="Github"/></a>
  57. <a href="http://github.com/amber-smalltalk/amber/zipball/master"><img src="images/zip.png" alt="Download"/></a>
  58. </div>
  59. <ul id="tabs">
  60. <li><a href="index.html">Overview</a></li>
  61. <li><a href="http://docs.amber-lang.net">Documentation</a></li>
  62. <li><a href="index.html#getinvolved">Get involved</a></li>
  63. <li><a href="learn.html">Interactive tutorial</a></li>
  64. <li><a href="index.html#get-started">Getting Started</a></li>
  65. <li><a target="_blank" href="https://github.com/amber-smalltalk/amber">Github</a></li>
  66. </ul>
  67. </div>
  68. </div>
  69. <div class="teaser">
  70. <div class="main">
  71. <h2>A <span class="info">new language</span> and <span class="info">live environment</span> made for the web.</h2>
  72. <div class="column">
  73. <p>The Amber language is deeply inspired by Smalltalk. It is designed to make client-side development faster and easier.
  74. Amber includes a live development environment with a class browser, workspace, unit test runner, transcript, object inspector and debugger.</p>
  75. </div>
  76. <div class="column">
  77. <p>Amber is written in itself, including the compiler, and compiles into efficient JavaScript, mapping one-to-one with the JS equivalent.</p>
  78. </div>
  79. <div class="clear"></div>
  80. <p class="try">
  81. <button class="huge" onClick="require('app').globals.Browser._open()">Try Amber in your browser!</button>
  82. </p>
  83. </div>
  84. </div>
  85. <div id="content">
  86. <div class="main">
  87. {{ content }}
  88. </div>
  89. </div>
  90. <div id="footer">
  91. <div class="main">
  92. <p>Copyright © 2011-2014 <a href="http://www.nicolas-petton.fr">Nicolas Petton</a> and <a href="https://github.com/amber-smalltalk/amber/contributors">Amber contributors</a>.</p>
  93. <p>The content of this website in licensed under <a href="http://creativecommons.org/licenses/by-nc/3.0/">CC-BY-NC 3.0</a>.</p>
  94. <p>Amber is released under the <a href="https://github.com/amber-smalltalk/amber/blob/master/LICENSE">MIT</a> license.</p>
  95. </div>
  96. </div>
  97. </body>
  98. </html>