docs; rendering docs from .dj to .html

still no in-app link to these docs though
This commit is contained in:
りき萌 2024-08-26 23:25:36 +02:00
parent 8aa38ae4c4
commit 879d17d904
13 changed files with 1298 additions and 294 deletions

22
template/docs.hbs.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{ title }} · rakugaki manual</title>
<link rel="stylesheet" href="/static/base.css">
<link rel="stylesheet" href="/static/docs.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/static/live-reload.js" type="module"></script>
</head>
<body>
<main>
<div class="wrapper">
{{{ content }}}
</div>
</main>
</body>
</html>