Files
JTannerShaw.github.io/_layouts/default.html
Tanner Shaw 0b92553869 new template
2022-03-03 08:28:29 -08:00

27 lines
722 B
HTML

<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{%- include head.html -%}
<body class="{% if page.layout == 'builder' %} home{% endif %}{% if page.layout == 'post' %} post{% endif %}{% if page.layout == 'blog' %} blog{% endif %}{% if page.layout == 'archive' %} blog{% endif %}{% if page.layout == 'page' %} post{% endif %}{% if page.layout == 'error' %} post{% endif %}">
{%- include preloader.html -%}
<!-- Container -->
<div class="container">
{%- include header.html -%}
<!-- Wrapper -->
<div class="wrapper">
{{ content }}
</div>
{%- include footer.html -%}
</div>
{%- include scripts.html -%}
</body>
</html>