Skip to content

Commit 16aace3

Browse files
committed
Fix #13: Navigation links
1 parent aa7282a commit 16aace3

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

pelicanconf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@
4747
}
4848

4949
MENUITEMS = [
50-
("Companies", "pages/pythoninnepal.html"),
51-
("Developers", "pages/developers.html"),
52-
("Resources", "pages/resources.html"),
53-
("Meetups", "pages/meetups.html"),
54-
("Videos", "pages/videos.html")
50+
("Companies", "http://0.0.0.0:8000/pages/pythoninnepal.html"),
51+
("Developers", "http://0.0.0.0:8000/pages/developers.html"),
52+
("Resources", "http://0.0.0.0:8000/pages/resources.html"),
53+
("Meetups", "http://0.0.0.0:8000/pages/meetups.html"),
54+
("Videos", "http://0.0.0.0:8000/pages/videos.html")
5555
]
5656

5757
#

publishconf.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@
1010
sys.path.append(os.curdir)
1111
from pelicanconf import *
1212

13-
SITEURL = 'https://pythonnepal.github.io'
13+
MENUITEMS = [
14+
("Companies", "http://pythonnepal.org/pages/pythoninnepal.html"),
15+
("Developers", "http://pythonnepal.org/pages/developers.html"),
16+
("Resources", "http://pythonnepal.org/pages/resources.html"),
17+
("Meetups", "http://pythonnepal.org/pages/meetups.html"),
18+
("Videos", "http://pythonnepal.org/pages/videos.html")
19+
]
20+
21+
SITEURL = 'http://pythonnepal.org'
1422
RELATIVE_URLS = False
1523

1624
FEED_ALL_ATOM = 'feeds/all.atom.xml'

0 commit comments

Comments
 (0)