Hi all,
I'm doing a site and I'm trying to understand how navigation links works between pages and output. I just try to link agenda pages with, for the index :
.. title: AGENDA
.. slug: agenda_index
to my menu :
NAVIGATION_LINKS = {
DEFAULT_LANG: (
("/index.html", "ACCUEIL"),
((
('/index', 'Index'),
('/now', 'A présent'),
('/older', 'Archives')),
'AGENDA'),
("/categories/", "Étiquettes"),
),
}
How do I declare the hierarchy in my pages ? In my folders ?
Is it the title, or the slug of page that has to be declared in my conf.py ?
What's the order I have to follow ? first create directly the folder "agenda" ?
I'm a great neophyte, but I really do my best, reading over and over the handbook, but I'm really bad for this...
Thanks !!