learn.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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="js/amber.js"></script>
  10. </head>
  11. <body>
  12. <div class="main">
  13. <a id="back" href="./index.html"> &larr; back to main page </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 <a href="http://www.nicolas-petton.fr/">Nicolas Petton</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. <p>Amber is an opensource project sponsored by <a href="http://www.objectfusion.fr/">objectfusion</a>.</p>
  28. </div>
  29. </div>
  30. <script type="text/javascript">
  31. loadAmber({files: ['TrySmalltalk.js'], prefix: 'examples/trysmalltalk/js', ready: loadTutorial});
  32. </script>
  33. </body>
  34. </html>