diff options
Diffstat (limited to 'chimere/views.py')
-rw-r--r-- | chimere/views.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chimere/views.py b/chimere/views.py index a8fe22e..f2bc5fc 100644 --- a/chimere/views.py +++ b/chimere/views.py @@ -211,6 +211,8 @@ def index(request, area_name=None, default_area=None, simple=False, 'has_search': hasattr(settings, 'CHIMERE_SEARCH_ENGINE') and settings.CHIMERE_SEARCH_ENGINE }) + if hasattr(settings, 'PROJECT_IMAGE') and settings.PROJECT_IMAGE: + response_dct['PROJECT_IMAGE'] = settings.PROJECT_IMAGE if hasattr(settings, 'CONTACT_EMAIL') and settings.CONTACT_EMAIL: response_dct['contact_email'] = settings.CONTACT_EMAIL response_dct['share_networks'], net_dct = \ |