rework generation to support multiple files; introduce a more proper CLI

This commit is contained in:
りき萌 2023-08-19 17:52:13 +02:00
parent 27414d4254
commit 7e84005a6b
9 changed files with 302 additions and 49 deletions

23
template/tree.hbs Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{ config.user.title }}</title>
<link rel="stylesheet" href="{{ site }}/static/css/main.css">
<link rel="stylesheet" href="{{ site }}/static/css/tree.css">
<link rel="stylesheet" href="{{ site }}/static/font/font.css">
<script type="module" src="{{ site }}/static/js/usability.js"></script>
</head>
<body>
<main class="tree">
{{{ tree }}}
</main>
</body>
</html>