summaryrefslogtreecommitdiffstats
path: root/web/macros.py
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2013-10-03 13:58:16 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2013-10-03 13:58:16 (GMT)
commit61befc57729bf6b339e0de339d8cd7185a6d9c8d (patch)
treea92da6ba2b0a4f920b8e2ef5453343c7cb92418e /web/macros.py
parent3bddbc9e7a84c2e6712b63bd0fe881a4a3e6261c (diff)
downloadsite-61befc57729bf6b339e0de339d8cd7185a6d9c8d.tar.gz
Use ยป instead of > for breadcrumb navigation
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