2020-06-23 08:05:25 +00:00
|
|
|
#!/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"),
|
2020-06-24 08:33:48 +00:00
|
|
|
("Accueil", "/"),
|
2020-06-23 08:05:25 +00:00
|
|
|
("Contenus de cours", "/pages/tout-sur-mes-cours.html"),
|
|
|
|
('blog', '/blog_index.html'),
|
|
|
|
('Opytex', "/opytex/"),
|
|
|
|
("pyMath", "/pymath/"),
|
|
|
|
('À propos', "/pages/a-propos.html"),
|
|
|
|
]
|
|
|
|
|