Reputation: 828
It can't be too hard to find those template files. Where are they? I am pretty sure that this actual TYPO3 installation does neither use TempVoila nor ExtBase/Fluid to handle it's template.
So I got a TypoScript Template
page.logo.file = 1:/xy/lablabla.png
page.theme.copyright.text = Erstellt durch <a href="http://www.xxxxx.fr">Fooobarr</a>
page.logo.height = 154
page.logo.width = 143
page.logo.alt = xxx
page.theme.news.list.maxWInText = 0
page.theme.navigationtype = top
plugin.tt_news.pid_list = 53
plugin.tt_news.singlePid = 55
plugin.tt_news.backPid = 54
And that's it. The template in the frontend is displayed fine. How can I find out where the hell those freaking HTML files are stored on the FTP-Server?
I faced this several times I faced a TYPO3 installation. Is there a standard path or what?
Regards, Chris
Upvotes: 0
Views: 173
Reputation: 7695
I guess you have "bootstrap_package
" extension installed. This is not a standard (system) extension, but you can make your setup easier with it.
The pages.theme
settings in your TypoScript is a setting from bootstrap. See here:
https://docs.typo3.org/typo3cms/extensions/bootstrap_package/Configuration/TypoScript/Index.html
So in this case, you files are in the:
/typo3conf/ext/bootstrap_package/Resources/Private/Templates/Page/
And actually it uses Fluid and TypoScript to render your templates but this is a good starting point to look for your BE Layout like Default, 2 Columns 25-75 and so on.
Upvotes: 3