Changes between Version 6 and Version 7 of DeveloperGuidelines/Menus
- Timestamp:
- 01/05/15 15:06:03 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Menus
v6 v7 28 28 In order to customise the content of the menus, you should create a template folder, if you don't already have one, and ensure there is an empty __init__.py file inside: 29 29 {{{ 30 / private/templates/<template>/__init__.py30 /modules/templates/<template>/__init__.py 31 31 }}} 32 32 33 33 You should then copy the example file from the 'default' template folder to: 34 34 {{{ 35 / private/templates/<template>/menus.py35 /modules/templates/<template>/menus.py 36 36 }}} 37 37 … … 43 43 If you wish to go further than simply customising the content, but rather change the look & feel or add more different sorts of menu, then you need to also copy one of the example layouts.py files to: 44 44 {{{ 45 / private/templates/<template>/layouts.py45 /modules/templates/<template>/layouts.py 46 46 }}} 47 47 … … 54 54 * [DeveloperGuidelines/Templates Templates] 55 55 * [DeveloperGuidelines/Themes Themes] 56 * [DeveloperGuidelines/ CustomPages Custom Pages]56 * [DeveloperGuidelines/Templates/CustomPages Custom Pages] 57 57