<!DOCTYPE html> <html lang=“en” dir=“ltr”>

{% include head.html %}
<body>
  {% include header.html %}
  {% include modals.html %}
  <div class="container">
    {% for page in site.pagez %}
    <section id='{{page.href}}'>
      {% include {{page.file}} %}
    </section>
    {% endfor %}
  </div>
  <div class="footer">
    {% include footer_includes.html %}
    {% include footer.html %}
  </div>
</body>

</html>