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 }}
|
2025-07-10 16:50:41 +02:00
|
|
|
|
|
|
|
<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>
|
2025-07-10 16:50:41 +02:00
|
|
|
{{> components/_sidebar.hbs }}
|
|
|
|
{{~> components/_tree.hbs }}
|
2025-07-15 21:55:41 +02:00
|
|
|
{{~> components/_pink_space.hbs }}
|
2024-10-29 18:14:01 +01:00
|
|
|
|
2025-01-11 00:15:29 +01:00
|
|
|
<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>
|
2025-07-10 16:50:41 +02:00
|
|
|
|
|
|
|
{{~> components/_jar.hbs }}
|