mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 13:58:05 +00:00
24 lines
442 B
HTML
24 lines
442 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
|
|
{%- include head.html -%}
|
|
|
|
<body>
|
|
|
|
{%- include header.html -%}
|
|
|
|
<main class="page-content" aria-label="Content">
|
|
<div class="wrapper">
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
|
|
{%- include footer.html -%}
|
|
|
|
{%- if jekyll.environment == 'production' -%}
|
|
{%- include analytics.html -%}
|
|
{%- endif -%}
|
|
</body>
|
|
|
|
</html>
|