aboutsummaryrefslogtreecommitdiff
path: root/template.html
blob: bc5ba2679dc602fe5738b996982c713352783bde (plain)
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>$title$</title>
  6. <style type="text/css">
  7. body { font-family: Helvetica, arial, freesans, clean, sans-serif;
  8. line-height: 1.4;
  9. max-width: 48em;
  10. margin: auto;
  11. color: #333333;
  12. background-color: #fff;
  13. font-size: 13pt;
  14. }
  15. div#TOC ul { list-style: none; }
  16. h1 { font-size: 140%; font-weight: bold; border-top: 1px solid gray; padding-top: 0.5em; }
  17. h2 { font-size: 120%; font-weight: bold; }
  18. h3 { font-size: 110%; font-weight: bold; }
  19. h4 { font-size: 100%; font-weight: bold; }
  20. span.space { position: relative; }
  21. span.space:after {
  22. content: "";
  23. position: absolute;
  24. /* create a mark that indicates a space (trick from D. Greenspan) */
  25. top: 3px; bottom: 3px; left: 1px; right: 1px;
  26. border: 1px solid #999;
  27. }
  28. div.example { overflow: hidden; }
  29. p { text-align: justify; }
  30. pre { padding: 0.5em; margin-left: 0; margin-right: 0; margin-top: 0.2em;
  31. margin-bottom: 0.5em; font-size: 88%; }
  32. pre {
  33. white-space: pre-wrap; /* css-3 */
  34. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  35. white-space: -pre-wrap; /* Opera 4-6 */
  36. white-space: -o-pre-wrap; /* Opera 7 */
  37. word-wrap: break-word; /* Internet Explorer 5.5+ */
  38. }
  39. code { font-family: monospace; background-color: #D3E1E4; }
  40. pre > code { background-color: transparent; }
  41. div.example > pre { float:left; width: 48%; }
  42. div.example > pre.markdown { clear:left; }
  43. pre.tree { font-weight: bold; color: #777; }
  44. pre.markdown { background-color: #D3E1E4; }
  45. pre.html { background-color: #C9CaCE; }
  46. pre.html span.space:after {
  47. border: 1px solid #666;
  48. }
  49. #watermark {
  50. position:fixed;
  51. bottom:0px;
  52. left:0px;
  53. padding: 1em;
  54. width: 100%;
  55. font-size: 120%;
  56. opacity:0.7;
  57. z-index:99;
  58. color: white;
  59. }
  60. #watermark a { color: white; }
  61. div.examplenum { font-size: 82%; text-align: left; }
  62. a.dingus { color: red; cursor: pointer; }
  63. a.footnoteRef > sup:before {
  64. content: "[";
  65. }
  66. a.footnoteRef > sup:after {
  67. content: "]";
  68. }
  69. a.footnoteRef > sup {
  70. vertical-align: baseline;
  71. font-size: 100%;
  72. }
  73. </style>
  74. <script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
  75. <script type="text/javascript">
  76. $$(document).ready(function() {
  77. $$("div.example").each(function(e) {
  78. var t = $$(this).find('pre.markdown > code').text();
  79. $$(this).find('a.dingus').click(function(f) {
  80. window.open('/dingus.html?text=' +
  81. encodeURIComponent(t.replace(/→/g,"\t")));
  82. });
  83. });
  84. $$("pre.markdown").dblclick(function(e) { window.open('/dingus.html?text=' +
  85. encodeURIComponent($$(this).find('code').text()));
  86. });
  87. });
  88. </script>
  89. </head>
  90. <body>
  91. $if(title)$
  92. <h1 class="title">$title$</h1>
  93. $endif$
  94. $if(version)$
  95. <div class="version">Version $version$ ($date$)</div>
  96. $endif$
  97. <div class="authors">
  98. $for(author)$<span class="author">$author$</span>$sep$; $endfor$
  99. </div>
  100. <div id="TOC">
  101. $toc$
  102. </div>
  103. <div id="watermark"></div>
  104. $body$
  105. </body>
  106. </html>