mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-13 00:48:19 -05:00
6 lines
229 B
HTML
6 lines
229 B
HTML
{% for item in include.items %}
|
|
{% assign item_url = item | prepend:"/docs/" | append:"/" %}
|
|
{% assign doc = site.docs | where: "url", item_url | first %}
|
|
<option value="{{ doc.url }}">{{ doc.title }}</option>
|
|
{% endfor %}
|