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

{%- include head.html -%}
<body a="{{ site.theme_config.appearance | default: "auto" }}">
  <main class="page-content" aria-label="Content">
    <div class="w">
      {{ content }}
    </div>
  </main>

  {%-if site.goat_counter and jekyll.environment == "production"-%}
    {%-include goat_counter.html-%}
  {%-endif-%}

  {% if page.custom_js %}
    {% for js_file in page.custom_js %}
      <script type="text/javascript" src="{{ site.baseurl }}/assets/js/{{ js_file }}.js"></script>
    {% endfor %}
  {% endif %}
</body>

</html>