diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-10-03 13:58:16 (GMT) |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-10-03 13:58:16 (GMT) |
commit | 61befc57729bf6b339e0de339d8cd7185a6d9c8d (patch) | |
tree | a92da6ba2b0a4f920b8e2ef5453343c7cb92418e | |
parent | 3bddbc9e7a84c2e6712b63bd0fe881a4a3e6261c (diff) | |
download | site-61befc57729bf6b339e0de339d8cd7185a6d9c8d.tar.gz |
Use ยป instead of > for breadcrumb navigation
-rw-r--r-- | web/macros.py | 2 |
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> > %s' % (url, hx(title), output) | 27 | output = '<a href="%s">%s</a> » %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 = ' ' | 29 | output = ' ' |
30 | return output | 30 | return output |