summaryrefslogtreecommitdiffstats
path: root/web/macros.py
diff options
context:
space:
mode:
Diffstat (limited to 'web/macros.py')
-rw-r--r--web/macros.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/macros.py b/web/macros.py
index 715d353..9416c75 100644
--- a/web/macros.py
+++ b/web/macros.py
@@ -24,7 +24,7 @@ def breadcrumb():
24 while parents[title][1] is not None: 24 while parents[title][1] is not None:
25 title = parents[title][1] 25 title = parents[title][1]
26 url = parents[title][0] 26 url = parents[title][0]
27 output = '<a href="%s">%s</a> &gt; %s' % (url, hx(title), output) 27 output = '<a href="%s">%s</a> &raquo; %s' % (url, hx(title), output)
28 if output == hx(page.title): # Hide breadcrumb if the page has no parent. 28 if output == hx(page.title): # Hide breadcrumb if the page has no parent.
29 output = '&nbsp;' 29 output = '&nbsp;'
30 return output 30 return output