calendar/Tests/Fixtures/calendar_example/Resources/Private/Templates/Frontend/Calendar/Month.html

18 lines
577 B
HTML
Raw Normal View History

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
<h2>{month.dateTimeInstance -> f:format.date(format: '%B %Y')}</h2>
<f:for each="{month.weeks}" as="week">
<f:for each="{week.days}" as="day">
{day.dateTimeInstance -> f:format.date(format: 'd')}
{day.foreignData.exampleKey}
Table: {day.foreignData.context.tableName}
Title: {day.foreignData.context.databaseRow.title}
</f:for>
</f:for>
{customVariable}
PluginName: {pluginName}
</html>