mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
21 lines
446 B
HTML
21 lines
446 B
HTML
{% assign items = include.items %}
|
|
|
|
<ul>
|
|
{% for item in items %}
|
|
{% assign item_url = item | prepend:"/project/" | append:"/" %}
|
|
|
|
{% if item_url == page.url %}
|
|
{% assign c = "current" %}
|
|
{% else %}
|
|
{% assign c = "" %}
|
|
{% endif %}
|
|
|
|
{% for p in site.pages %}
|
|
{% if p.url == item_url %}
|
|
<li class="{{ c }}"><a href="{{ site.baseurl }}{{ p.url }}">{{ p.title }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
</ul>
|