25 lines
485 B
HTML
25 lines
485 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
|
|
{%- include head.html -%}
|
|
|
|
<body>
|
|
|
|
{%- include views/header.html -%}
|
|
|
|
{%- include views/banner.html -%}
|
|
|
|
{%- include extensions/hashlocate.html -%}
|
|
|
|
{%- include extensions/theme-toggle.html -%}
|
|
|
|
<main class="page-content" aria-label="Content">
|
|
<div class="wrapper">
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
|
|
{%- include views/footer.html -%}
|
|
|
|
</body>
|
|
</html>
|