site_opytex/globalconf.py

18 lines
508 B
Python
Raw Normal View History

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'),
2020-08-16 08:32:13 +00:00
('Informatique', "/pages/projets-informatiques.html"),
2020-06-23 08:05:25 +00:00
('À propos', "/pages/a-propos.html"),
]