Navigation inside page content and sitemap
Like most functions in your web page, navigation is also included in the TYPO3 Core. For example, navigation in TYPO3 offers different kinds of menus, searching fields, and also a searching system. All the menus that you need to create can be done using TypoScript configuration. The kind of menus might be:
TMENU—text-based menus
GMENU—graphical image menus for generating menus using font files (
*.otf, *.ttf
)HMENU—hierarchical menus
IMGMENU—imagemap menus (using the tag
<area>
)
For a better understanding of how we can use these menus, we will survey the most frequently used examples separately—TMENU and GMENU. Note that HMENU is used for TMENU development. While developing HMENU, we didn't set up value entryLevel = 1
; therefore, HMENU reads sitemap data from default—zero level.
TMENU
We can say that TMENU use is a matter of taste. The statement "graphical menu (GMENU) charge server" isn't true because every image for the graphical menu...