mirror of
https://github.com/adulau/art.git
synced 2024-11-21 17:47:05 +00:00
Update header.html
This commit is contained in:
parent
a0855b791c
commit
5056f4d7f1
1 changed files with 2 additions and 2 deletions
|
@ -13,12 +13,12 @@
|
|||
<nav id="menu">
|
||||
<ul class="links">
|
||||
{% for page in site.pages %}
|
||||
{% if page.url == "index.html" %}
|
||||
{% if page.path == "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.url != "index.html" %}
|
||||
{% if page.path != "index.html" %}
|
||||
<li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue