diff options
author | David Robillard <d@drobilla.net> | 2019-03-24 23:39:05 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-24 23:42:59 +0100 |
commit | 198cb31eddc79ff23e02a4f0677b72e112aadd7e (patch) | |
tree | 269e6ee25902079cae195ea73ded3596aae2ffb1 /themes/lv2/templates/page.html | |
parent | e8be79f251b9e519b6aef6cf687a938c7855014c (diff) | |
download | lv2site-198cb31eddc79ff23e02a4f0677b72e112aadd7e.tar.xz |
Fix page self reference links
Diffstat (limited to 'themes/lv2/templates/page.html')
-rw-r--r-- | themes/lv2/templates/page.html | 2 |
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 }} |