<!doctype html>
<meta charset="utf-8">
<!-- <link rel="stylesheet" href="{{ '/static/style.css'|url }}">  -->
<title>{% block title %}Welcome{% endblock %} — voc-info</title>
<body>
  <header>
    <h1>voc-info</h1>
    <nav>
      <ul class="nav navbar-nav">
        <li{% if this._path == '/' %} class="active"{% endif
          %}><a href="{{ '/'|url }}">Welcome</a></li>
        {% for href, title in [
          ['/projects', 'Projects'],
          ['/about', 'About']
        ] %}
          <li{% if this.is_child_of(href) %} class="active"{% endif
            %}><a href="{{ href|url }}">{{ title }}</a></li>
        {% endfor %}
      </ul>
    </nav>
  </header>
  <div class="page content">
    {% block body %}{% endblock %}
  </div>
  <footer>
    &copy; Copyright 2023 by L3D.
  </footer>
</body>