Skip to content
Snippets Groups Projects
menu_single.html 532 B
Newer Older
  • Learn to ignore specific revisions
  • Tom Wiesing's avatar
    Tom Wiesing committed
    {% comment %}
      This page creates a single (non-submenu) item. It expects `item` as a variable. 
    {% endcomment %}
    
    {% unless item.menu_hidden %}
      <li
        {% if page.url == item.url %}class="active"{% endif %}
      >
    
    Tom Wiesing's avatar
    Tom Wiesing committed
        {% if item.external %}
            <a href="{{ item.url }}" target="_blank">
        {% else %}
            <a href="{{ site.baseurl }}{{ item.url }}">
        {% endif %}
        
    
    Tom Wiesing's avatar
    Tom Wiesing committed
          {% if item.menu_title %}
            {{ item.menu_title }}
          {% else %}
            {{ item.title }}
          {% endif %}
        </a>
      </li>
    {% endunless %}