From 16aace3dd8265aaa952546470d9504eb84f871d5 Mon Sep 17 00:00:00 2001 From: Amit Date: Mon, 11 Sep 2017 20:42:51 +0545 Subject: [PATCH] Fix #13: Navigation links --- pelicanconf.py | 10 +++++----- publishconf.py | 10 +++++++++- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index dab3a2a..8a41345 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -47,11 +47,11 @@ } MENUITEMS = [ - ("Companies", "pages/pythoninnepal.html"), - ("Developers", "pages/developers.html"), - ("Resources", "pages/resources.html"), - ("Meetups", "pages/meetups.html"), - ("Videos", "pages/videos.html") + ("Companies", "http://0.0.0.0:8000/pages/pythoninnepal.html"), + ("Developers", "http://0.0.0.0:8000/pages/developers.html"), + ("Resources", "http://0.0.0.0:8000/pages/resources.html"), + ("Meetups", "http://0.0.0.0:8000/pages/meetups.html"), + ("Videos", "http://0.0.0.0:8000/pages/videos.html") ] # diff --git a/publishconf.py b/publishconf.py index c21c883..46a3847 100644 --- a/publishconf.py +++ b/publishconf.py @@ -10,7 +10,15 @@ sys.path.append(os.curdir) from pelicanconf import * -SITEURL = 'https://pythonnepal.github.io' +MENUITEMS = [ + ("Companies", "http://pythonnepal.org/pages/pythoninnepal.html"), + ("Developers", "http://pythonnepal.org/pages/developers.html"), + ("Resources", "http://pythonnepal.org/pages/resources.html"), + ("Meetups", "http://pythonnepal.org/pages/meetups.html"), + ("Videos", "http://pythonnepal.org/pages/videos.html") +] + +SITEURL = 'http://pythonnepal.org' RELATIVE_URLS = False FEED_ALL_ATOM = 'feeds/all.atom.xml'