<!DOCTYPE html> <html lang=“{{ page.lang | default: site.lang | default: 'en-US' }}”>

<head>
  {% include meta.html %}
  {% include styles.html %}
  {% if site.google_analytics_ua or site.dap_agency %}
    {% include analytics.html %}
  {% endif %}
</head>
<body class="{{ layout.class }} {{ page.class }} site-wide">

  {% include skipnav.html %}
  {% include header.html %}

  <main id="main-content"{% for _attr in layout.main %} {{ _attr[0] }}="{{ _attr[1] }}"{% endfor %}>
  {{ content }}
  </main>

  {% include footer.html %}
  {% include scripts.html %}
</body>

</html>