<!DOCTYPE html> <html lang=β€œ{{ page.lang | default: site.lang | default: ”enβ€œ }}”>

{% include head.html %}

<body class="">
  <main>
    {% include style.html %}
    {% include navbar.html %}
    {% include header.html %}

    {% for section in site.sections %}
      {{ section.content }}
    {% endfor %}

    {% include footer.html %}
    {% include scripts.html %}
  </main>
</body>

</html>