18 lines
483 B
Python
18 lines
483 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*- #
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
# Menu
|
||
|
MAIN_MENU = True
|
||
|
DISPLAY_PAGES_ON_MENU = False
|
||
|
DISPLAY_CATEGORIES_ON_MENU = False
|
||
|
MENUITEMS = [
|
||
|
#("Dernières modifications", SITEURL+"blog_index.html"),
|
||
|
("Contenus de cours", "/pages/tout-sur-mes-cours.html"),
|
||
|
('blog', '/blog_index.html'),
|
||
|
('Opytex', "/opytex/"),
|
||
|
("pyMath", "/pymath/"),
|
||
|
('À propos', "/pages/a-propos.html"),
|
||
|
]
|
||
|
|