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

<head>
  <meta charset='utf-8'>
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
  {% if site.matomo.host %}
  <!-- Matomo -->
  <script type="text/javascript">
    var _paq = window._paq || [];
    /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
    _paq.push(['trackPageView']);
    _paq.push(['enableLinkTracking']);
    (function() {
      var u="{{ site.matomo.host }}";
      _paq.push(['setTrackerUrl', u+'matomo.php']);
      _paq.push(['setSiteId', '{{ site.matomo.id }}']);
      var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
      g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
    })();
  </script>
  <!-- End Matomo Code -->
  {% endif %}

{% seo %}

</head>

<body>

  <header>
    <div class="container">
      <h1>{{ page.title | default: site.title }}</h1>
      <h2>{{ page.description | default: site.description }}</h2>

      <section id="downloads">
        {% if site.zip_url %}
          <a href="{{ site.zip_url }}" class="btn">Download as .zip</a>
        {% endif %}
        {% if site.tar_url %}
          <a href="{{ site.tar_url }}" class="btn">Download as .tar.gz</a>
        {% endif %}
        {% if site.repository_url %}
          <a href="{{ site.repository_url }}" class="btn">View Project</a>
        {% endif %}
      </section>
    </div>
  </header>

  <div class="container">
    <section id="main_content">
      {{ content }}
    </section>
  </div>

</body>

</html>