template.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!doctype html>
  2. <html class="default $theme$">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>$title$</title>
  7. <link rel="stylesheet" type="text/css" href="/theme.css" />
  8. </head>
  9. <body class="body">
  10. <header class="header">
  11. <h1 class="header-title">
  12. <a class="header-title__link" href="/">
  13. <img src="/logo-with-name.svg" alt="ForgeFed" title="ForgeFed" />
  14. </a>
  15. </h1>
  16. <nav class="nav">
  17. <a class="nav__link"
  18. href="/behavior$suffix$">🗲 behavior</a>
  19. <a class="nav__link"
  20. href="/modeling$suffix$">🛠 modeling</a>
  21. <a class="nav__link"
  22. href="/vocabulary$suffix$">📓 vocabulary</a>
  23. <a class="nav__link"
  24. href="https://notabug.org/peers/forgefed/issues">🐞 issues</a>
  25. <a class="nav__link"
  26. href="https://talk.feneas.org/c/forgefed">🗪 forum</a>
  27. <a class="nav__link"
  28. href="$other-theme$.html">$other-theme-name$</a>
  29. </nav>
  30. </header>
  31. <main class="main">
  32. $if(toc)$
  33. <h1 class="main-title">
  34. $title$ - draft - $date$ $gitbranch$
  35. <a href="https://notabug.org/peers/forgefed/commit/$gitcommitid$">
  36. $gitcommitidshort$
  37. </a>
  38. $if(gitdirty)$
  39. [dirty]
  40. $endif$
  41. </h1>
  42. $else$
  43. <h1 class="main-title">$title$</h1>
  44. $endif$
  45. $if(toc)$
  46. <nav class="toc">
  47. <header class="toc-title">Table of Contents</header>
  48. $toc$
  49. </nav>
  50. $endif$
  51. $body$
  52. </main>
  53. <footer class="footer">
  54. <p xmlns:dct="http://purl.org/dc/terms/">
  55. <a rel="license"
  56. href="http://creativecommons.org/publicdomain/zero/1.0/">
  57. <img src="https://licensebuttons.net/p/zero/1.0/88x31.png"
  58. style="border-style: none;"
  59. alt="CC0" />
  60. </a>
  61. <br />
  62. <a rel="dct:publisher" href="https://peers.community">
  63. <span property="dct:title">The ForgeFed team</span>
  64. </a>
  65. has dedicated all copyright and related and neighboring
  66. rights to
  67. <span property="dct:title">ForgeFed</span> to the public domain
  68. worldwide.
  69. </p>
  70. <p>❤ Copying is an act of love. Please copy, reuse and share!</p>
  71. <p>
  72. Site generated by
  73. <a class="footer__link" href="https://pandoc.org">pandoc</a>.
  74. </p>
  75. <p>
  76. <a href="https://liberapay.com/ForgeFed/donate">
  77. <img alt="Donate using Liberapay"
  78. src="https://liberapay.com/assets/widgets/donate.svg" />
  79. </a>
  80. </p>
  81. </footer>
  82. </body>
  83. </html>