Sha256: 0ae457677485b7ed4810fc25b921eb5b81c69c8cf86537fdd2c01a1dc5fc4c7a
Contents?: true
Size: 773 Bytes
Versions: 1
Compression:
Stored size: 773 Bytes
Contents
<nav id="nav"> <ul> {% for item in include.menu %} {% if item.menu[0] %} <li class="submenu {% if item.url == page.url %} current {% endif %}"> <a href="{{ item.url | absolute_url }}">{{ item.title }}</a> <ul> {% for subitem in item.menu %} <li {% if subitem.url == page.url %} class="current" {% endif %}> <a href="{{ subitem.url | absolute_url }}">{{ subitem.title }}</a> </li> {% endfor %} </ul> {% else %} <li {% if item.url == page.url %} class="current" {% endif %}> <a href="{{ item.url | absolute_url }}">{{ item.title }}</a> </li> {% endif %} {% endfor %} </ul> </nav>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-twenty-0.1.7 | _includes/navigation.html |