default.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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='https://raw.github.com/NicolasPetton/jtalk/master/js/jtalk.js'></script>
  10. <script type='text/javascript'> loadJtalk() </script>
  11. <script type="text/javascript">
  12. var _gaq = _gaq || [];
  13. _gaq.push(['_setAccount', 'UA-2246313-6']);
  14. _gaq.push(['_trackPageview']);
  15. (function() {
  16. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  17. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  18. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  19. })();
  20. </script>
  21. </head>
  22. <body>
  23. <script type="text/javascript">
  24. jQuery(window).scroll(function() {
  25. if(jQuery(window).scrollTop() > 210) {
  26. jQuery('#menu')
  27. .css('position', 'fixed')
  28. .css('top', '0px')
  29. } else {
  30. jQuery('#menu')
  31. .css('position', 'absolute')
  32. .css('top', '210px')
  33. }
  34. });
  35. </script>
  36. <a href="http://github.com/NicolasPetton/jtalk"><img style="position: absolute; top: 0; lef
  37. 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>
  38. <div id="wrapper">
  39. <div id="header">
  40. <div class="main">
  41. <img alt="Jtalk, the Smalltalk for web developers" src="images/text_header.png"/>
  42. </div>
  43. </div>
  44. <div id="menu">
  45. <div class="main">
  46. <ul>
  47. <li><a href="index.html">Overview</a></li> ·
  48. <li><a href="index.html#download">Download</a></li> ·
  49. <li><a id="doc_link" href="documentation.html">Documentation</a></li> ·
  50. <li><a target="_blank" href="https://github.com/NicolasPetton/jtalk">Source</a></li>
  51. </ul>
  52. </div>
  53. </div>
  54. <div id="content">
  55. <div class="main">
  56. {{ content }}
  57. </div>
  58. </div>
  59. <div id="footer">
  60. <div class="main">
  61. <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>
  62. <p>Jtalk is an opensource project sponsored by <a href="http://www.objectfusion.fr">objectfusion</a>.</p>
  63. <p>The design of this website was provided by <a href="mailto:neomie.thirion@gmail.com">Noémie Thirion</a>.</p>
  64. </div>
  65. </div>
  66. </body>
  67. </html>