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/jtalk.js'></script>
  10. <script type="text/javascript">
  11. var _gaq = _gaq || [];
  12. _gaq.push(['_setAccount', 'UA-2246313-6']);
  13. _gaq.push(['_trackPageview']);
  14. (function() {
  15. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  16. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  17. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  18. })();
  19. </script>
  20. </head>
  21. <body>
  22. <script type="text/javascript">
  23. jQuery(window).scroll(function() {
  24. if(jQuery(window).scrollTop() > 210) {
  25. jQuery('#menu')
  26. .css('position', 'fixed')
  27. .css('top', '0px')
  28. } else {
  29. jQuery('#menu')
  30. .css('position', 'absolute')
  31. .css('top', '210px')
  32. }
  33. });
  34. </script>
  35. <a href="http://github.com/NicolasPetton/amber"><img style="position: absolute; top: 0; lef
  36. 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>
  37. <div id="wrapper">
  38. <div id="header">
  39. <div class="main">
  40. <img alt="Jtalk, the Smalltalk for web developers" src="images/text_header.png"/>
  41. </div>
  42. </div>
  43. <div id="menu">
  44. <div class="main">
  45. <ul>
  46. <li><a href="index.html">Overview</a></li> ·
  47. <li><a href="index.html#download">Download</a></li> ·
  48. <li><a href="learn.html">Learn</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. <script type='text/javascript'> loadJtalk() </script>
  67. </body>
  68. </html>