Adjusting the output of the title tag

I’ve asked that question in the Slack channel and already got an answer, @stolle just said it might be useful for others here :slight_smile:
I want the change the default title tag of Neos.

This is how I’ve configured the title tag in my TypoScript file:
page = Page {
head {
titleTag = TYPO3.TypoScript:Tag {
tagName = ‘title’
content = ${q(node).property(‘titleOverride’) ? q(node).property(‘titleOverride’) : q(node).property(‘title’) + ’ - Passcreator’}
}
}
}

2 Likes