Sha256: 18790f3b3809e1be47c835f45549487b99e410a539050de868ef7ff6bbe3c7e1
Contents?: true
Size: 703 Bytes
Versions: 2
Compression:
Stored size: 703 Bytes
Contents
<ul class="usa-sidenav-list"> {% for link in include.links %} {% assign _href = link.href %} {% assign _current = false %} {% if link.href == page.url or link.href == page.permalink %} {% assign _current = true %} {% endif %} <li> <a href="{% if link.external == true %}{{ link.href }}{% else %}{{ link.href | relative_url }}{% endif %}" {% if _current %} class="usa-current" {% endif %} {% if link.class %}class="{{ link.class }}" {% endif %} > {{ link.text }} </a> {% if _current and page.subnav %} <ul class="usa-sidenav-sub_list"> {% include subnav.html links=page.subnav %} </ul> {% endif %} </li> {% endfor %} </ul>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
uswds-jekyll-4.1.0 | _includes/sidenav.html |
uswds-jekyll-4.0.0 | _includes/sidenav.html |