Fluid Templating

The plugin “Indexed Search (Extbase & Fluid based)” can be extended with custom templates:

plugin.tx_indexedsearch.view {
    templateRootPaths {
        0 = EXT:indexed_search/Resources/Private/Templates/
        10 = {$plugin.tx_indexedsearch.view.templateRootPath}
        20 = EXT:myextension/Resources/Private/Templates/
    }

    partialRootPaths {
        0 = EXT:indexed_search/Resources/Private/Partials/
        10 = {$plugin.tx_indexedsearch.view.partialRootPath}
        20 = EXT:myextension/Resources/Private/Partials/
    }
}

The above configuration will made the plugin look for any template in myextension first and fall back to the default indexed_search template if a template could not be found in myextension.