aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Rosser <rosser.bjr@gmail.com>2016-05-18 12:53:04 -0400
committerBen Rosser <rosser.bjr@gmail.com>2016-05-18 12:53:04 -0400
commit67e04e126876313faff78f62dac8c1eaf428c6b9 (patch)
tree74cad6bc3300f2113cdf581f5876160ed0c3c723
parentccb8efc064dff0cc24fe715d8f83e33e061c64de (diff)
downloadpelican-themes-67e04e126876313faff78f62dac8c1eaf428c6b9.zip
pelican-themes-67e04e126876313faff78f62dac8c1eaf428c6b9.tar.gz
pelican-themes-67e04e126876313faff78f62dac8c1eaf428c6b9.tar.bz2
In monospace theme, link to page.url, not page.slug
-rw-r--r--monospace/templates/page.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/monospace/templates/page.html b/monospace/templates/page.html
index b8c89f7..c9d5ff6 100644
--- a/monospace/templates/page.html
+++ b/monospace/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 }}