X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/cdf730ea3886e486ab2a7fdcf8777db744297380..29f2eef0ba05968f84c3afad30e1fa105fc56ed3:/sommitrealweird/blog/context_processors.py?ds=inline diff --git a/sommitrealweird/blog/context_processors.py b/sommitrealweird/blog/context_processors.py index bbfc3ea..9505bb9 100644 --- a/sommitrealweird/blog/context_processors.py +++ b/sommitrealweird/blog/context_processors.py @@ -2,6 +2,11 @@ from django.conf import settings from blog.models import BlogEntry, BlogSection import re +def blog_feed(request): + return { + 'BLOG_FEED_ROOT': settings.BLOG_FEED_ROOT, + } + def content_breadcrumb(request): path = request.path if path[0:len(settings.BLOG_ROOT)] == settings.BLOG_ROOT: @@ -12,9 +17,14 @@ def content_breadcrumb(request): parts = path.split('/') if parts[0] == "section": - # Just need to add the section title to the breadcrumb - section = BlogSection.objects.get(slug__exact=parts[1]) - breadcrumb.append({'url': section.get_absolute_url(), 'title': section.title}) + # Just need to add the section title to the breadcrumb *if* we + # actually have a section + if len(parts) > 1: + try: + section = BlogSection.objects.get(slug__exact=parts[1]) + breadcrumb.append({'url': section.get_absolute_url(), 'title': section.title}) + except: + pass if len(parts) == 5 and \ parts[0].isdigit() and \