summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-24 23:39:05 +0100
committerDavid Robillard <d@drobilla.net>2019-03-24 23:42:59 +0100
commit198cb31eddc79ff23e02a4f0677b72e112aadd7e (patch)
tree269e6ee25902079cae195ea73ded3596aae2ffb1
parente8be79f251b9e519b6aef6cf687a938c7855014c (diff)
downloadlv2site-198cb31eddc79ff23e02a4f0677b72e112aadd7e.tar.xz
Fix page self reference links
-rw-r--r--themes/lv2/templates/page.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/lv2/templates/page.html b/themes/lv2/templates/page.html
index 762dd27..6adfc0d 100644
--- a/themes/lv2/templates/page.html
+++ b/themes/lv2/templates/page.html
@@ -13,7 +13,7 @@
{% block content %}
<header>
{% if page.title %}
- <h1><a href="{{ SITEURL }}/{{ page.slug }}" id="page-title">{{ page.title }}</a></h1>
+ <h1><a href="{{ SITEURL }}/pages/{{ page.slug }}.html" id="page-title">{{ page.title }}</a></h1>
{% endif %}
</header>
{{ page.content }}