learn.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>Learn Smalltalk with ProfStef</title>
  6. <link href='http://fonts.googleapis.com/css?family=Istok+Web' rel='stylesheet' type='text/css'>
  7. <meta name="author" content="Nicolas Petton">
  8. <link rel="stylesheet" type="text/css" href="css/profstef.css">
  9. <script type='text/javascript' src='/node_modules/es6-promise/dist/es6-promise.auto.js'></script>
  10. <script type='text/javascript' src='the.js'></script>
  11. <script type='text/javascript'>
  12. // TODO remove, deprecated
  13. var global = typeof global === "undefined" ? window : global || window;
  14. var globalThis = typeof globalThis === "undefined" ? window : globalThis || window;
  15. new Promise(function (resolve, reject) {
  16. require(['app'], resolve, reject);
  17. }).then(function (amber) {
  18. amber.initialize({
  19. //used for all new packages in IDE
  20. 'transport.defaultAmdNamespace': "amber/website"
  21. }).then(function () {
  22. '#version'._asBrush()._contents_('v' + amber.globals.Smalltalk._version());
  23. '#tutorial'._asBrush()._contents_(amber.globals.TrySmalltalkWidget._new());
  24. });
  25. });
  26. </script>
  27. </head>
  28. <body>
  29. <div class="main">
  30. <a id="back" href="/"> &larr; back to amber-lang.net </a>
  31. <div>Amber <span id="version" style="color:red"></span></div>
  32. <img src="images/profstef.png"/>
  33. <h1>Hey there! Got 5 minutes? I'm prof Stef and I want to teach you Smalltalk. I promise, it won't take long!</h1>
  34. <div id="tutorial"><h2>Loading...</h2></div>
  35. </div>
  36. <div id="footer">
  37. <div class="main">
  38. <p>Copyright &copy; 2011-2015 <a href="http://www.nicolas-petton.fr/">Nicolas Petton</a>. The content of this
  39. website in licensed under <a href="http://creativecommons.org/licenses/by-nc/3.0/">CC-BY-NC 3.0</a>.</p>
  40. <p>Amber is an open-source project generously helped by
  41. <a href="http://www.instantiations.com/"><img style="margin: 0; width: 9.3ex; height: 3.45ex" src="images/VA-Smalltalk-Logo-Hori-Trans.png"></a>
  42. and developed mainly in
  43. <a href="https://brave.com/amb399"><img style="margin: 0; width: 10.9ex; height: 3.3ex" src="/brave-assets/Logos/Brave/PNG/primary/logotype/dark/brave-logotype-full-color.png"></a>.</p>
  44. </div>
  45. </div>
  46. </body>
  47. </html>