treehouse/template/_tree.hbs

34 lines
927 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 }}
2023-08-18 13:25:20 +02:00
</head>
<body>
<!-- Empty span to push noscript over to the next grid cell.
Browsers turn <noscript> tags into <span style="display: inline !important;"> with no
additional classes, and we can't easily select that in CSS. -->
<span></span>
2024-02-21 23:17:19 +01:00
{{> components/_noscript.hbs }}
2024-02-08 22:41:01 +01:00
{{> components/_nav.hbs }}
{{> components/_header.hbs }}
2024-02-21 23:17:19 +01:00
{{!--
NOTE: ~ because components/_tree.hbs must not include any extra indentation, because it may
2024-02-21 23:17:19 +01:00
contain pre elements which shouldn't be indented.
--}}
{{~> components/_tree.hbs }}
2024-02-08 22:41:01 +01:00
2024-02-21 23:17:19 +01:00
{{!-- For all pages except the one linked from the footer, include the footer icon. --}}
{{#if (ne page.tree_path "treehouse")}}
{{> components/_footer.hbs }}
2024-02-08 22:41:01 +01:00
{{/if}}
<th-emoji-tooltips></th-emoji-tooltips>
2023-08-18 13:25:20 +02:00
</body>
2024-02-08 22:41:01 +01:00
</html>