Change blog to Blog in the bread crumb
[sommitrealweird.git] / sommitrealweird / blog / context_processors.py
index e63a85f24b4e4f89cc4a360c8f60790016d730f0..bbfc3eae02a2135dc6714e5031a7f22fe53f905e 100644 (file)
@@ -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'Home'}, {'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):]