Revision 7508da11c174ca4ada21ee1e3f4ea3a04cd8406f authored by jekyllbot on 10 March 2018, 02:09:57 UTC, committed by jekyllbot on 10 March 2018, 02:09:57 UTC
1 parent e1b64f9
Raw File
tutorials_ul.html
<ul>
{% for item in include.items %}
  {% assign item_url = item | prepend:"/tutorials/" | append:"/" %}
  {% assign p = site.tutorials | where:"url", item_url | first %}
  <li class="{% if item_url == page.url %}current{% endif %}"><a href="{{ p.url }}">{{ p.title }}</a></li>
{% endfor %}
</ul>
back to top