48 lines
1,020 B
Handlebars
48 lines
1,020 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 }}
|
|
|
|
<footer class="pink-space">
|
|
<p class="copyright">copyright © riki moe / リキ萌, 2025</p>
|
|
<pre class="meow"> \ /
|
|
| \__/ |
|
|
\ / \ / ___
|
|
--| _ _ |-- =_ \
|
|
/ `------` \ \ \
|
|
| \ | |
|
|
| \ _/ |
|
|
/ | / _/
|
|
| \ / _/
|
|
| |__/
|
|
\-,,-,,--/</pre>
|
|
</footer>
|
|
|
|
<th-overlays></th-overlays>
|
|
<th-command-line></th-command-line>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{~> components/_jar.hbs }}
|