15 lines
322 B
HTML
15 lines
322 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
{% include head.html %}
|
|
<body>
|
|
{% include header.html %}
|
|
<main>
|
|
<div class="container">
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
{% include footer.html %}
|
|
{% include footer-scripts.html %}
|
|
</body>
|
|
</html>
|