2024-02-21 23:17:19 +01:00
|
|
|
<main class="tree">
|
|
|
|
{{!-- Append page styles and scripts into the main content, such that they can be inlined
|
|
|
|
into linked branches when those are loaded in. Putting them in the page's head would make
|
|
|
|
extracting them way more painful than it needs to be. --}}
|
|
|
|
|
|
|
|
{{#each page.styles}}
|
2024-07-19 20:05:17 +02:00
|
|
|
<link rel="stylesheet" href="{{ asset (cat 'css/' this) }}">
|
2024-02-21 23:17:19 +01:00
|
|
|
{{/each}}
|
|
|
|
|
2024-07-19 20:05:17 +02:00
|
|
|
<script type="module">
|
|
|
|
{{!-- Go through the import map for each script. --}}
|
|
|
|
{{#each page.scripts}}
|
|
|
|
import "{{ this }}";
|
|
|
|
{{/each}}
|
|
|
|
</script>
|
2024-02-21 23:17:19 +01:00
|
|
|
|
|
|
|
{{{ page.tree }}}
|
|
|
|
</main>
|