tyto.navbar: added more comments (how to create title)
This commit is contained in:
parent
4e21403e3d
commit
3b501b75fe
|
@ -550,18 +550,20 @@ def create_navbar(opt, navbars_dir):
|
|||
'# (Liste des catégories)\n' + \
|
||||
'# Fichier : tyto.navbar\n' + \
|
||||
'# Dossier : %s\n'%navbars_dir + \
|
||||
'# Comment : 1 nom de dossier par ligne\n' + \
|
||||
'# Comment : 1 nom de dossier par ligne *1\n' + \
|
||||
'# (depuis articles/)\n' + \
|
||||
'# Ne commence pas par "/"\n' + \
|
||||
'# L\'ordre définit la position\n' + \
|
||||
'# Note: Pour éviter l\'erreur 404 :\n' + \
|
||||
'# - ajouter un article index.{ext}\n' + \
|
||||
'# dans le dossier mentionné\n' + \
|
||||
'# - utiliser check et wip dessus' + \
|
||||
'# - utiliser check et wip dessus\n' + \
|
||||
'# Option *1: Pour définir un titre de lien :\n' + \
|
||||
'# - ajouter "= titre de lien"\n' + \
|
||||
'\n# %s\n'%(15 * "-") +\
|
||||
'# Exemples :\n' + \
|
||||
'# documentation\n' + \
|
||||
'# a-propos\n' + \
|
||||
'# a-propos = Informations concernant ce site\n' + \
|
||||
'# %s\n\n'%(15 * "-")
|
||||
|
||||
nav_load_en = '# For: Tyto - Littérateur\n' + \
|
||||
|
@ -570,18 +572,20 @@ def create_navbar(opt, navbars_dir):
|
|||
'# (categories\'s list)\n' + \
|
||||
'# File: tyto.navbar\n' + \
|
||||
'# Directory: %s\n'%navbars_dir + \
|
||||
'# Comment: 1 folder name per line\n' + \
|
||||
'# Comment: 1 folder name per line *1\n' + \
|
||||
'# (from articles/)\n' + \
|
||||
'# not begining with "/"\n' + \
|
||||
'# Order in sidebar position\n' + \
|
||||
'# Remember: To avoid 404 error, you must:\n' + \
|
||||
'# - add index.{ext} file article\n' + \
|
||||
'# in set folder\n' + \
|
||||
'# - check and wip it' + \
|
||||
'# - check and wip it\n' + \
|
||||
'# Option *1: To define a title link:' + \
|
||||
'# - add "= title link"\n' + \
|
||||
'\n# %s\n'%(15 * "-") +\
|
||||
'# Examples :\n' + \
|
||||
'# documentation\n' + \
|
||||
'# about\n' + \
|
||||
'# about = infos about this website\n' + \
|
||||
'# %s\n\n'%(15 * "-")
|
||||
|
||||
if tyto.n == 0: nav_load = nav_load_fr
|
||||
|
|
Loading…
Reference in New Issue