mirror of
https://github.com/minoplhy/crappy-jekyll.git
synced 2024-11-10 20:16:46 +00:00
20 lines
336 B
HTML
20 lines
336 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 -%}
|
|
</body>
|
|
|
|
</html>
|