X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/52c99f64f6e593c29b3c4cc92d3b41cb7f39a7a4..00841ead95c71fd168213f276dd10c717b7bdb00:/sommitrealweird/blog/context_processors.py diff --git a/sommitrealweird/blog/context_processors.py b/sommitrealweird/blog/context_processors.py index 14a9216..e63a85f 100644 --- a/sommitrealweird/blog/context_processors.py +++ b/sommitrealweird/blog/context_processors.py @@ -5,7 +5,7 @@ import re def content_breadcrumb(request): path = request.path if path[0:len(settings.BLOG_ROOT)] == settings.BLOG_ROOT: - breadcrumb = [{'url': u'/', 'title': u'/'}, {'url': settings.BLOG_ROOT, 'title': u'blog'},] + breadcrumb = [{'url': u'/', 'title': u'Home'}, {'url': settings.BLOG_ROOT, 'title': u'blog'},] path = path[len(settings.BLOG_ROOT):]