template.homepage.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html$if(lang)$ lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="generator" content="pandoc">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
  7. $for(author-meta)$
  8. <meta name="author" content="$author-meta$">
  9. $endfor$
  10. $if(date-meta)$
  11. <meta name="dcterms.date" content="$date-meta$">
  12. $endif$
  13. $if(keywords)$
  14. <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$">
  15. $endif$
  16. <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
  17. $if(quotes)$
  18. <style type="text/css">q { quotes: "“" "”" "‘" "’"; }</style>
  19. $endif$
  20. $if(highlighting-css)$
  21. <style type="text/css">
  22. $highlighting-css$
  23. </style>
  24. $endif$
  25. $for(css)$
  26. <link rel="stylesheet" href="$css$">
  27. $endfor$
  28. $if(math)$
  29. $math$
  30. $endif$
  31. $for(header-includes)$
  32. $header-includes$
  33. $endfor$
  34. <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/feed.xml"/>
  35. </head>
  36. <body>
  37. $for(include-before)$
  38. $include-before$
  39. $endfor$
  40. $if(title)$
  41. <header>
  42. <h1 class="title">$title$</h1>
  43. $if(subtitle)$
  44. <p class="subtitle">$subtitle$</p>
  45. $endif$
  46. $for(author)$
  47. <p class="author">$author$</p>
  48. $endfor$
  49. $if(date)$
  50. <p class="date">$date$</p>
  51. $endif$
  52. </header>
  53. $endif$
  54. $if(return)$
  55. $return$
  56. $endif$
  57. $if(toc)$
  58. <nav id="$idprefix$TOC">
  59. $toc$
  60. </nav>
  61. $endif$
  62. $body$
  63. $for(include-after)$
  64. $include-after$
  65. $endfor$
  66. <div style="background:#fcc;color:#222; bottom:0px; position:fixed; left:0px; right: 0px; height: 4em; margin:1em; ">
  67. <p style="text-align:center;">
  68. <a href="/news/rms.html">Defend Richard Stallman!</a>
  69. </p>
  70. </div>
  71. </body>
  72. </html>