From: Brett Parker <iDunno@sommitrealweird.co.uk>
Date: Fri, 27 Mar 2009 14:59:26 +0000 (+0000)
Subject: Change blog to Blog in the bread crumb
X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/commitdiff_plain/cdf730ea3886e486ab2a7fdcf8777db744297380?ds=inline;hp=--cc

Change blog to Blog in the bread crumb
---

cdf730ea3886e486ab2a7fdcf8777db744297380
diff --git a/sommitrealweird/blog/context_processors.py b/sommitrealweird/blog/context_processors.py
index e63a85f..bbfc3ea 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'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):]