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

{% include head.html %}

<body>

  <div class="main">
    {% include header.html %}

    <main class="page-content" aria-label="Content">

      <div class="wrapper">
        {{ content }}
      </div>

      {% if paginator.total_pages > 1 %}
        {% include pagination/pages.html %}
      {% endif %}

    </main>
  </div>

  {% include footer.html %}

</body>

</html>