summaryrefslogtreecommitdiffstats
path: root/web/macros.py
diff options
context:
space:
mode:
Diffstat (limited to 'web/macros.py')
-rw-r--r--web/macros.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/web/macros.py b/web/macros.py
index 9416c75..5ec9b38 100644
--- a/web/macros.py
+++ b/web/macros.py
@@ -25,8 +25,9 @@ def breadcrumb():
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> &raquo; %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):
29 output = '&nbsp;' 29 output = 'Stable release: <a href="%s">%s</a>' \
30 % (release_notes, plugins_release)
30 return output 31 return output
31 32
32def list_kids(): 33def list_kids():