<!DOCTYPE html>
<html>
<head>
  {% include 'head.twig' %}
</head>
<body>

  <div class="page">

    {% include 'navigation.twig' %}

    <main class="content">
      {% block content %}{% endblock %}
    </main>

  </div>

  {% include 'counters.twig' %}

  <script src="/static/layout_internal.js?v={{ date().timestamp }}"></script>

  {% block js %}
      {# extra js scripts here #}
  {% endblock %}

</body>
</html>