treehouse/template/_tree.hbs
リキ萌 36705e7c1e adding document mode
I've been thinking a lot about the treehouse and I feel like it's time to say goodbye to the tree format.
2025-07-14 19:25:22 +02:00

33 lines
664 B
Handlebars

<!DOCTYPE html>
<html lang="en-US" prefix="og: https://ogp.me/ns#">
<head>
{{> 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>
</head>
<body>
{{> components/_sidebar.hbs }}
{{~> components/_tree.hbs }}
<th-overlays></th-overlays>
<th-command-line></th-command-line>
</body>
</html>
{{~> components/_jar.hbs }}