aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/header.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/header.html b/_includes/header.html
index 2c18219..0a5cdbd 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -18,7 +18,7 @@
{% assign current_page = false %}
{% endif %}
<li class="navigation__item {% if current_page %}active{% endif %}">
- <a href="{{ site.url }}{{ item.href }}">{{ item.title }}</a>
+ <a href="{{ site_full_url }}{{ item.href }}">{{ item.title }}</a>
</li>
{% if current_page and item.subnavi %}
{% assign subnavi = item.subnavi %}
@@ -32,7 +32,7 @@
<ul>
{% for subitem in subnavi.items %}
<li class="navigation__item {% if subitem.href == subpage_href %}active{% endif %}">
- <a href="{{ site.url }}{{ main_page_href }}{{ subitem.href }}">{{ subitem.title }}</a>
+ <a href="{{ site_full_url }}{{ main_page_href }}{{ subitem.href }}">{{ subitem.title }}</a>
</li>
{% endfor %}
</ul>