Many files in the repo have the UNIX executable permission bit set, which indicates to the OS that these are executable binaries. None of these files are executable, so they should not have the executable permission bit set.
17 lines
711 B
HTML
17 lines
711 B
HTML
<nav class="nav">
|
|
<ul class="list list--nav">
|
|
{% for item in site.pages %}
|
|
{% unless item.title == false or item.url contains "/page" or item.url contains "/404.html" or item.url contains "/feed." %}
|
|
<li class="item item--nav{% if item.url == page.url %} item--current{% endif %}">
|
|
{% if item.collectionpage %}
|
|
{% assign collectiondata = site.collections | where: "label", item.collectionpage | first %}
|
|
<a href="{{ site.baseurl }}{{ item.url }}">{{ collectiondata.title }}</a>
|
|
{% else %}
|
|
<a href="{{ site.baseurl }}{{ item.url }}">{{ item.title }}</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endunless %}
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|