16 lines
648 B
HTML
16 lines
648 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ page.lang | default: "en" }}" class="html" data-theme="{{ site.theme_config.appearance | default: "auto" }}">
|
||
|
{%- include head.html -%}
|
||
|
<body>
|
||
|
<main class="page-content" aria-label="Content">
|
||
|
<div class="w">
|
||
|
{{ content }}
|
||
|
{% include toggle_theme_button.html %}
|
||
|
<div class="credits">
|
||
|
Theme forked from <a href="https://github.com/abhinavs/moonwalk" target="_blank" rel="noreferrer">Moonwalk</a>, mixed with <a href="https://github.com/catppuccin/catppuccin" target="_blank" rel="noreferrer">Catppuccin</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|