summaryrefslogtreecommitdiff
path: root/_includes/header.html
diff options
context:
space:
mode:
authoruvok cheetah2019-05-24 20:25:33 +0200
committeruvok cheetah2019-05-24 20:25:33 +0200
commitdfdb94f8603e4b988de805a7c1be651e9883daff (patch)
tree491a969129aa3f19d53ec0b9d39ccc3a47f5a5e7 /_includes/header.html
parentdcf8e30c74b57f18f60b6592700ea8fe3b18d339 (diff)
Quick fix: Minima / Jekyll removes html extension
WTF???
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/header.html b/_includes/header.html
index dc42cdd..d338b82 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -23,7 +23,7 @@
{% for my_page in site.pages %}
{% if my_page.title and my_page.autogen == nil and my_page.url != "/index.html" %}
- <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
+ <a class="page-link" href="{{ my_page.url | relative_url }}.html">{{ my_page.title | escape }}</a>
{% endif %}
{% endfor %}