Skip to content
Snippets Groups Projects
navigation.html 384 B
Newer Older
  • Learn to ignore specific revisions
  • <nav>
    
      <a href="https://leaps-initiative.eu/"><img src='{{ "/assets/images/leaps-logo.png" | relative_url }}' alt="LEAPS logo"></a>
    
      <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>