From 61befc57729bf6b339e0de339d8cd7185a6d9c8d Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Thu, 3 Oct 2013 15:58:16 +0200 Subject: =?UTF-8?q?Use=20=C2=BB=20instead=20of=20>=20for=20breadcrumb=20na?= =?UTF-8?q?vigation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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(): while parents[title][1] is not None: title = parents[title][1] url = parents[title][0] - output = '%s > %s' % (url, hx(title), output) + output = '%s » %s' % (url, hx(title), output) if output == hx(page.title): # Hide breadcrumb if the page has no parent. output = ' ' return output -- cgit v0.10-9-g596f