diff options
Diffstat (limited to '_includes/navbar.html')
-rw-r--r-- | _includes/navbar.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/navbar.html b/_includes/navbar.html index 7c0c8c4..c5d1de8 100644 --- a/_includes/navbar.html +++ b/_includes/navbar.html @@ -4,8 +4,8 @@ <a href="{{ site.url | uri_escape }}">Home</a> {% for page in pages %} - <a href="{{ page.url | relative_url | uri_escape }}"> - {{ page.title | default: "Page" | strip_newlines | strip_html | strip | normalize_whitespace | smartify | capitalize }} + <a href="{{ page.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}"> + {{ page.title | default: "Page" | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }} </a> {% endfor %} </nav> |