treehouse/template/tree.hbs

27 lines
617 B
Handlebars
Raw Normal View History

2023-08-18 13:25:20 +02:00
<!DOCTYPE html>
<html>
<head>
2023-08-18 17:04:12 +02:00
<meta charset="UTF-8">
2023-08-18 13:25:20 +02:00
<title>{{ config.user.title }}</title>
2023-08-18 17:04:12 +02:00
2023-08-20 15:54:06 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2023-08-18 17:04:12 +02:00
<link rel="stylesheet" href="{{ site }}/static/css/main.css">
2023-08-18 19:25:38 +02:00
<link rel="stylesheet" href="{{ site }}/static/css/tree.css">
2023-08-18 17:04:12 +02:00
<link rel="stylesheet" href="{{ site }}/static/font/font.css">
2023-08-20 15:05:59 +02:00
<script type="module" src="{{ site }}/static/js/tree.js"></script>
2023-08-18 17:04:12 +02:00
<script type="module" src="{{ site }}/static/js/usability.js"></script>
2023-08-18 13:25:20 +02:00
</head>
<body>
2023-08-18 17:04:12 +02:00
<main class="tree">
{{{ tree }}}
</main>
2023-08-18 13:25:20 +02:00
</body>
</html>