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

{% include head.html %}

<body>

  {% include header.html %}

  {% if page.layout == "post" %}
  <main class="post-content" aria-label="Content">
  {% else %}
  <main class="page-content" aria-label="Content">
  {% endif %}
    <div class="wrapper">
      {{ content }}
    </div>
  </main>

  {% include footer.html %}

</body>

</html>