website/_layouts/default.html

24 lines
442 B
HTML
Raw Normal View History

2018-08-17 17:18:40 +00:00
<!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 -%}
2018-09-30 10:07:50 +00:00
{%- if jekyll.environment == 'production' -%}
{%- include analytics.html -%}
{%- endif -%}
2018-08-17 17:18:40 +00:00
</body>
</html>