123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html class="default $theme$">
- <head>
- <meta charset="utf-8" />
- <title>$title$</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="author" content="$authors$" />
- <meta name="description" content="$description$" />
- <link rel="stylesheet" type="text/css" href="$offset$theme.css" />
- <link rel="shortcut icon" type="image/x-icon" href="$offset$favicon.ico" />
- </head>
- <body class="body">
- <header class="header">
- <h1 class="header-title">
- <a class="header-title__link" href="$offset$index.html">
- <img src="$offset$banner.png" alt="Banner Image" title="The Peers Community"/>
- </a>
- </h1>
- <nav class="nav">
- <a class="nav__link"
- href="$offset$why/index.html">📚 Why?</a>
- <a class="nav__link"
- href="$offset$sitemap/index.html">🗺 Sitemap</a>
- <a class="nav__link"
- href="$offset$$other-theme$index.html">💡 Toggle Theme</a>
- </nav>
- </header>
- <main class="main">
- $if(toc)$
- <h1 class="main-title">
- $title$
- </h1>
- <nav class="toc">
- <header class="toc-title">Table of Contents</header>
- $toc$
- </nav>
- $endif$
- $if(build)$
- <h2>$date$ $gitbranch$
- <a href="https://notabug.org/peers/peers-www/commit/$gitcommitid$">
- $gitcommitidshort$
- </a>
- $if(gitdirty)$
- [dirty]
- $endif$
- </h2>
- $endif$
- $body$
- </main>
- <footer class="footer">
- <p>
- <small>© 2022 Peers</small>
- <small>• Website Code distributed under the <abbr title="GNU Affero General Public License, version 3 or greater">AGPLv3+</abbr></small>
- <small>• Website Media licensed under <abbr title="Creative Commons Attribution-ShareAlike 4.0 International Public License">CC BY-SA 4.0</abbr></small>
- </p>
- </footer>
- </body>
- </html>
|