All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			508 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			508 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"),
 | |
|         ("Accueil", "/"),
 | |
|         ("Contenus de cours", "/pages/tout-sur-mes-cours.html"),
 | |
|         ('Blog', '/blog_index.html'),
 | |
|         ('Informatique', "/pages/projets-informatiques.html"),
 | |
|         ('À propos', "/pages/a-propos.html"),
 | |
|         ]
 | |
| 
 |