Sha256: 6d8b13390fe9e23804717cca75d53f16a222b75b435f5b2a8f4bbfd6c6df67f5
Contents?: true
Size: 944 Bytes
Versions: 1
Compression:
Stored size: 944 Bytes
Contents
{% capture html %} <ul> {% if include.context == "/" %} <li class="{% if page.url == "/" %}active{% endif %}"> <a href="{{ site.baseurl }}/">{{ site.title }}</a> </li> {% endif %} {% assign entries = site.pages | sort: "path" %} {% for entry in entries %} {% capture slug %}{{ entry.url | split: "/" | last }}{% endcapture %} {% capture current %}{{ entry.url | remove: slug | remove: "//" | append: "/" }}{% endcapture %} {% if current == include.context %} <li class="{% if page.url contains entry.url %}active{% endif %}"> <a href="{{ site.baseurl }}{{ entry.url }}">{{ entry.title }}</a> {% include sitemap.html context=entry.url %} </li> {% endif %} {% endfor %} </ul> {% endcapture %}{{ html | strip_newlines | replace:' ','' | replace:' ','' | replace:' ',' ' }}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jursdocs-0.0.5 | _includes/sitemap.html |