learn.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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="./amber/js/amber.js"></script>
  10. </head>
  11. <body>
  12. <div class="main">
  13. <a id="back" href="/"> &larr; back to amber-lang.net </a>
  14. <img src="images/profstef.png"/>
  15. <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>
  16. <div id="tutorial"><h2>Loading...</h2></div>
  17. <script>
  18. function loadTutorial() {
  19. jQuery('#tutorial').empty();
  20. smalltalk.TrySmalltalkWidget._new()._appendToJQuery_(jQuery('#tutorial'));
  21. }
  22. </script>
  23. </div>
  24. <div id="footer">
  25. <div class="main">
  26. <p>Copyright © 2011 - 2013 <a href="http://www.nicolas-petton.fr/">Nicolas Petton</a> and <a href="https://github.com/amber-smalltalk/amber/contributors">Amber contributors</a>. 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>
  27. </div>
  28. </div>
  29. <script type="text/javascript">
  30. loadAmber({files: ['TrySmalltalk.js'], prefix: '../learn/js', ready: loadTutorial});
  31. </script>
  32. </body>
  33. </html>