default.html 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. <script type='text/javascript' src='js/jquery-1.4.4.min.js'></script>
  10. <script type='text/javascript' src='js/jquery-ui-1.8.9.custom.min.js'></script>
  11. <script type='text/javascript' src='js/jquery.textarea.js'></script>
  12. <script type='text/javascript' src='js/jtalk.js'></script>
  13. <link rel="stylesheet" type="text/css" href="css/jtalk.css"/>
  14. <script type="text/javascript">
  15. var _gaq = _gaq || [];
  16. _gaq.push(['_setAccount', 'UA-2246313-6']);
  17. _gaq.push(['_trackPageview']);
  18. (function() {
  19. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  20. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  21. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  22. })();
  23. </script>
  24. </head>
  25. <body>
  26. <script type="text/javascript">
  27. jQuery(window).scroll(function() {
  28. if(jQuery(window).scrollTop() > 210) {
  29. jQuery('#menu')
  30. .css('position', 'fixed')
  31. .css('top', '0px')
  32. } else {
  33. jQuery('#menu')
  34. .css('position', 'absolute')
  35. .css('top', '210px')
  36. }
  37. });
  38. </script>
  39. <a href="http://github.com/NicolasPetton/jtalk"><img style="position: absolute; top: 0; lef
  40. t: 0; border: 0;" src="https://assets.github.com/img/bec6c51521dcc8148146135149fe06a9cc737577?repo=&url=http%3A%2F%2Fs3.amazonaws.com%2Fgithub%2Fribbons%2Fforkme_left_darkblue_121621.png&path=" alt="Fork me on GitHub"></a>
  41. <div id="wrapper">
  42. <div id="header">
  43. <div class="main">
  44. <img alt="Jtalk, the Smalltalk for web developers" src="images/text_header.png"/>
  45. </div>
  46. </div>
  47. <div id="menu">
  48. <ul>
  49. <li><a href="index.html">Overview</a></li> ·
  50. <li><a href="index.html#download">Download</a></li> ·
  51. <li><a href="documentation.html">Documentation</a></li> ·
  52. <li><a target="_blank" href="https://github.com/NicolasPetton/jtalk">Source</a></li>
  53. </ul>
  54. </div>
  55. <div id="content">
  56. <div class="main">
  57. {{ content }}
  58. </div>
  59. </div>
  60. <div id="footer">
  61. <div class="main">
  62. <p>Copyright © 2011 <a href="https://github.com/NicolasPetton">Nicolas Petton</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 kindly provided by <a href="mailto:neomie.thirion@gmail.com">Noémie Thirion</a>.</p>
  65. </div>
  66. </div>
  67. </body>
  68. </html>