Skip to content
Snippets Groups Projects
Verified Commit 69417ddd authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Add example for nested menu

parent e7208791
No related branches found
No related tags found
No related merge requests found
......@@ -24,10 +24,18 @@ TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
LINKS = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
('Jinja2', 'http://jinja.pocoo.org/'))
# Navbar
MENUITEMS = [
('Home', '/'),
('Foo', [
('Bar', '/bar.html'),
('Beispiel', 'https://example.com'),
]),
('Bar', [
('Foobar', '/beispiel'),
('Barfoo', '/beispiel1.html'),
]),
]
FOOTERMENU = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
......@@ -40,4 +48,4 @@ SOCIAL = (('You can add links in your config file', '#'),
DEFAULT_PAGINATION = 10
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
\ No newline at end of file
#RELATIVE_URLS = True
Subproject commit 66fd902c66a0913d42c6a6b8a3f0dd2625250959
Subproject commit 54cd665a264e8b8e5d5a070f50fcdb43920b95be
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment