diff options
author | Kura <kura@kura.io> | 2014-06-09 18:41:13 +0100 |
---|---|---|
committer | Kura <kura@kura.io> | 2014-06-09 18:41:13 +0100 |
commit | 84dcf50b345102a327afd0a23750df5d8e27f7e8 (patch) | |
tree | cda958625d87cfcd93351b15616eab917d3f8f81 /mnmlist/templates | |
parent | 5049f492336fa66960cc6678fb3b32f666cab5c0 (diff) | |
parent | bc0f01fbc38e25b43ff63803d491b9d6a5637f2a (diff) | |
download | pelican-themes-84dcf50b345102a327afd0a23750df5d8e27f7e8.tar.gz |
Merge pull request #117 from jminardi/master
BUG: fix mnmlist theme page title link address
Diffstat (limited to 'mnmlist/templates')
-rw-r--r-- | mnmlist/templates/page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mnmlist/templates/page.html b/mnmlist/templates/page.html index 0fad5fe..8b16fa7 100644 --- a/mnmlist/templates/page.html +++ b/mnmlist/templates/page.html @@ -3,7 +3,7 @@ {% block content %} <header> <h1><a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> : - <a href="{{ SITEURL }}/{{ page.slug }}" id="page-title">{{ page.title }}</a></h1> + <a href="{{ SITEURL }}/{{ page.url }}" id="page-title">{{ page.title }}</a></h1> </header> <article> {{ page.content }} |