treehouse/template/_tree.hbs

34 lines
702 B
Handlebars
Raw Normal View History

2023-08-18 13:25:20 +02:00
<!DOCTYPE html>
2023-08-27 22:16:23 +02:00
<html lang="en-US" prefix="og: https://ogp.me/ns#">
2023-08-18 13:25:20 +02:00
<head>
2024-02-21 23:17:19 +01:00
{{> components/_head.hbs }}
<link rel="stylesheet" href="{{ asset 'css/tree.css' }}">
{{#each page.styles}}
<link rel="stylesheet" href="{{ asset (cat 'css/' this) }}">
{{/each}}
<script type="module">
{{!-- Go through the import map for each script. --}}
{{#each page.scripts}}
import "{{ this }}";
{{/each}}
</script>
2023-08-18 13:25:20 +02:00
</head>
<body>
{{> components/_sidebar.hbs }}
{{~> components/_tree.hbs }}
2025-07-15 21:55:41 +02:00
{{~> components/_pink_space.hbs }}
<th-overlays></th-overlays>
2024-12-08 12:45:29 +01:00
<th-command-line></th-command-line>
2023-08-18 13:25:20 +02:00
</body>
2024-02-08 22:41:01 +01:00
</html>
{{~> components/_jar.hbs }}