<!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>