ide.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <!-- saved from url=(0025)http://jtalk-project.org/ -->
  3. <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4. <title>Jtalk Smalltalk</title>
  5. <meta name="author" content="Nicolas Petton">
  6. <link rel="stylesheet" type="text/css" href="./ide/style.css">
  7. <script type="text/javascript" src="./js/jtalk.js"></script>
  8. </head>
  9. <body>
  10. <script type="text/javascript">
  11. loadJtalk();
  12. </script>
  13. <script type="text/javascript">
  14. jQuery(window).scroll(function() {
  15. if(jQuery(window).scrollTop() > 210) {
  16. jQuery('#menu')
  17. .css('position', 'fixed')
  18. .css('top', '0px')
  19. } else {
  20. jQuery('#menu')
  21. .css('position', 'absolute')
  22. .css('top', '210px')
  23. }
  24. });
  25. </script>
  26. <a href="http://github.com/NicolasPetton/jtalk"><img style="position: absolute; top: 0; lef
  27. t: 0; border: 0;" src="./ide/fork_me.png" alt="Fork me on GitHub"></a>
  28. <div id="wrapper">
  29. <div id="header">
  30. <div class="main">
  31. <img alt="Jtalk, the Smalltalk for web developers" src="./ide/text_header.png">
  32. </div>
  33. </div>
  34. <div id="menu">
  35. <div class="main">
  36. <ul>
  37. <li><a href="http://jtalk-project.org/index.html">Overview</a></li> ·
  38. <li><a href="http://jtalk-project.org/index.html#download">Download</a></li> ·
  39. <li><a id="doc_link" href="http://jtalk-project.org/documentation.html">Documentation</a></li> ·
  40. <li><a target="_blank" href="https://github.com/NicolasPetton/jtalk">Source</a></li>
  41. </ul>
  42. </div>
  43. </div>
  44. <div id="content">
  45. <div class="main">
  46. <div class="box first">
  47. <div class="content">
  48. <h1><img alt="Jtalk is an implementation of the Smalltalk language that runs on the JavaScript runtime." src="./ide/title_container1.png"></h1>
  49. <div class="left">
  50. <p>Jtalk is an implementation of the <a href="http://en.wikipedia.org/wiki/Smalltalk">Smalltalk</a> language that runs on top of the <a href="http://en.wikipedia.org/wiki/Javascript">JavaScript</a> runtime. It is designed to make client-side development faster and easier.</p>
  51. <p>Jtalk is written in itself, including the parser and compiler. Jtalk compiles into efficient JavaScript, mapping one-to-one with the equivalent JavaScript. There is no interpretation at runtime.</p>
  52. <p>Try a <button onclick="smalltalk.Browser._open()"> Class browser</button> right now!</p>
  53. </div>
  54. <div class="right"><img src="./ide/screen2.png"></div>
  55. <div class="clear"></div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. <div id="footer">
  61. <div class="main">
  62. <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>
  63. <p>Jtalk is an opensource project sponsored by <a href="http://www.objectfusion.fr/">objectfusion</a>.</p>
  64. <p>The design of this website was provided by <a href="mailto:neomie.thirion@gmail.com">Noémie Thirion</a>.</p>
  65. </div>
  66. </div>
  67. </div></body></html>