treehouse/template/_doc.hbs

33 lines
700 B
Handlebars

<!DOCTYPE html>
<html lang="en-US" prefix="og: https://ogp.me/ns#">
<head>
{{> components/_head.hbs }}
<link rel="stylesheet" href="{{ asset 'css/doc.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/_doc.hbs }}
{{~> components/_pink_space.hbs }}
<th-overlays></th-overlays>
<th-command-line></th-command-line>
</body>
</html>
{{~> components/_jar.hbs }}