mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
12 lines
305 B
HTML
12 lines
305 B
HTML
{% assign items = include.items %}
|
|
|
|
{% for item in items %}
|
|
{% assign item_url = item | prepend:"/project/" | append:"/" %}
|
|
|
|
{% for p in site.pages %}
|
|
{% if p.url == item_url %}
|
|
<option value="{{ site.baseurl }}{{ p.url }}">{{ p.title }}</option>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|