diff options
author | Vasudev Kamath <kamathvasudev@gmail.com> | 2014-02-02 01:21:00 +0530 |
---|---|---|
committer | Vasudev Kamath <kamathvasudev@gmail.com> | 2014-02-02 01:21:00 +0530 |
commit | 8c9a5bc9970813c34ca83b83ee01762903136fc3 (patch) | |
tree | fc2374bc01ec2a3eeaae09c65a79865eb5580e77 | |
parent | daacbe022c6c1cf9eee85b48e77a72f403b9a636 (diff) |
configuration fix
-rw-r--r-- | pelicanconf.py | 5 | ||||
-rw-r--r-- | publishconf.py | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index f61dbe6..3ca7152 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -40,7 +40,10 @@ PYGMENTS_STYLE = "solarizelight" BOOTSTRAP_THEME = "flatly" # Blogroll -LINKS = (('Old Blog Archive', 'http://blog-archive.copyninja.info/'),) +LINKS = (('Old Blog Archive', 'http://blog-archive.copyninja.info/'), + ('Ohloh Profile', 'https://www.ohloh.net/accounts/copyninja'), + ('Developer Overview (Debian)', + 'http://qa.debian.org/developer.php?login=kamathvasudev@gmail.com')) # Social widget SOCIAL = (('twitter', 'https://twitter.com/copyninja_'), diff --git a/publishconf.py b/publishconf.py index f072f37..76fca8e 100644 --- a/publishconf.py +++ b/publishconf.py @@ -30,5 +30,4 @@ DELETE_OUTPUT_DIRECTORY = True #GOOGLE_ANALYTICS = "" #GITHUB_URL = "https://github.com/copyninja" -SOCIAL = SOCIAL + (('rss', SITEURL + '/' + FEED_ALL_ATOM)) - +SOCIAL = SOCIAL + (('rss', SITEURL + '/' + FEED_ALL_ATOM),) |