blog/_layouts/default.html

16 lines
649 B
HTML
Raw Permalink Normal View History

2024-06-11 12:17:26 +02:00
<!DOCTYPE html>
2024-06-11 15:42:48 +02:00
<html lang="{{ page.lang | default: "en" }}" class="html" data-theme="{{ site.theme_config.appearance | default: "light" }}">
2024-06-11 12:17:26 +02:00
{%- 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>