.. include:: /Includes.rst.txt .. index:: Templates .. _templates: ==================== Overriding templates ==================== EXT:rt_pages_tree_icons is using Fluid as template engine. This documentation won't bring you all information about Fluid but only the most important things you need for using it. You can get more information in the section :ref:`Fluid templates of the Sitepackage tutorial `. A complete reference of Fluid ViewHelpers provided by TYPO3 can be found in the :ref:`ViewHelper Reference ` .. index:: Templates; TypoScript Change the templates using TypoScript constants ----------------------------------------------- As any Extbase based extension, you can find the templates in the directory :file:`Resources/Private/`. If you want to change a template, copy the desired files to the directory where you store the templates. We suggest that you use a sitepackage extension. Learn how to :ref:`Create a sitepackage extension `. .. code-block:: typoscript module.tx_rtpagestreeicons { view { # cat=module.tx_rtpagestreeicons/file; type=string; label=Path to template root (BE) templateRootPath = EXT:rt_pages_tree_icons/Resources/Private/Templates/ # cat=module.tx_rtpagestreeicons/file; type=string; label=Path to partials root (BE) patialRootPath = EXT:rt_pages_tree_icons/Resources/Private/Partials/ # cat=module.tx_rtpagestreeicons/file; type=string; label=Path to layouts root (BE) layoutRootPath = EXT:rt_pages_tree_icons/Resources/Private/Layouts/ } }