Skip to content
Snippets Groups Projects
navigation.html 341 B
Newer Older
  <img src='{{ "/assets/images/leaps-logo.png" | relative_url }}' alt="LEAPS logo">
  <ul>
    {% for item in site.data.navigation %}
        <a href="{{ item.link | relative_url }}" {% if page.url == item.link %} class="focus" {% endif %}>
        </a>
      </li>
    {% endfor %}
  </ul>
</nav>