mirror of
https://github.com/Codetrauma/JTannerShaw.github.io.git
synced 2026-01-09 20:57:54 -05:00
27 lines
722 B
HTML
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>
|