mirror of
https://github.com/devolitalia/forty-jekyll-theme
synced 2025-02-22 14:37:40 +01:00
Update header.html
This commit is contained in:
parent
994b88a776
commit
bd2f119a34
@ -13,12 +13,12 @@
|
||||
<nav id="menu">
|
||||
<ul class="links">
|
||||
{% for page in site.pages %}
|
||||
{% if page.path == "index.html" %}
|
||||
{% if page.url == "index.html" %}
|
||||
<li><a href="{{ page.url | prepend: site.baseurl | remove: "index.html" }}">{{ page.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% for page in site.pages %}
|
||||
{% if page.path !== "index.html" %}
|
||||
{% if page.url !== "index.html" %}
|
||||
<li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user