Revision c7f007686a4cf3cd228bcf5220237a325ba5c5c2 authored by jekyllbot on 05 March 2018, 22:16:01 UTC, committed by jekyllbot on 05 March 2018, 22:16:01 UTC
1 parent ebcd830
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