From 1eafe20027f4b39039417ddfbde803559b5a9d26 Mon Sep 17 00:00:00 2001 From: cassiobotaro Date: Fri, 22 Apr 2016 23:07:58 -0300 Subject: [PATCH] Added browser color configuration --- templates/base.html | 9 +++++++++ tests/pelicanconf.py | 1 + 2 files changed, 10 insertions(+) diff --git a/templates/base.html b/templates/base.html index 1fa5700..38c9ebc 100644 --- a/templates/base.html +++ b/templates/base.html @@ -33,6 +33,15 @@ + {% if BROWSER_COLOR %} + + + + + + + + {% endif %} {% block meta %} diff --git a/tests/pelicanconf.py b/tests/pelicanconf.py index 6a89134..ce3ff02 100644 --- a/tests/pelicanconf.py +++ b/tests/pelicanconf.py @@ -11,6 +11,7 @@ SITESUBTITLE = u'Test' SITEDESCRIPTION = u'%s\'s Thoughts and Writings' % AUTHOR SITELOGO = u'https://www.example.com/img/profile.png' FAVICON = SITEURL + '/images/favicon.ico' +BROWSER_COLOR = '#333' ROBOTS = u'index, follow'