<!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 %}
  <script>
    document.body.className += "js-loading";

    window.addEventListener("load", showPage, false);

    function showPage(){
      document.body.className = document.body.className.replace ("js-loading", "");
    }
  </script>
</body>

</html>