diff --git a/sigal/settings.py b/sigal/settings.py index 44c5f09..c690777 100644 --- a/sigal/settings.py +++ b/sigal/settings.py @@ -64,6 +64,7 @@ _DEFAULT_CONFIG = { 'piwik': {'tracker_url': '', 'site_id': 0}, 'plugin_paths': [], 'plugins': [], + 'site_logo': '', 'show_map': False, 'source': '', 'theme': 'colorbox', diff --git a/sigal/templates/sigal.conf.py b/sigal/templates/sigal.conf.py index 9216fa4..ef9eda7 100644 --- a/sigal/templates/sigal.conf.py +++ b/sigal/templates/sigal.conf.py @@ -222,6 +222,13 @@ ignore_files = [] # The default is 3 columns (176px). # colorbox_column_size = 3 + +# Site Logo +# Use a logo file in the side bar +# You must place the logo file into the theme's static images folder, which can be done using files_to_copy +# files_to_copy = (('logo.png', 'static/images/logo.png')) +# site_logo = 'logo.png' + # -------- # Plugins # -------- diff --git a/sigal/themes/colorbox/templates/base.html b/sigal/themes/colorbox/templates/base.html index 96e42a9..b6dfa68 100644 --- a/sigal/themes/colorbox/templates/base.html +++ b/sigal/themes/colorbox/templates/base.html @@ -20,7 +20,13 @@