25 lines
541 B
Handlebars
25 lines
541 B
Handlebars
<!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/tree.js"></script>
|
|
<script type="module" src="{{ site }}/static/js/usability.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<main class="tree">
|
|
{{{ tree }}}
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|