25 lines
844 B
HTML
25 lines
844 B
HTML
<html
|
|
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
|
data-namespace-typo3-fluid="true"
|
|
>
|
|
|
|
<f:layout name="Module" />
|
|
|
|
<f:section name="Before">
|
|
<f:asset.module identifier="@typo3/backend/element/immediate-action-element.js"/>
|
|
<f:variable name="immediateActionArgs" value="{0: 'web', 1: pageId}" />
|
|
<typo3-immediate-action
|
|
action="TYPO3.Backend.Storage.ModuleStateStorage.update"
|
|
args="{immediateActionArgs -> f:format.json() -> f:format.htmlspecialchars()}"
|
|
></typo3-immediate-action>
|
|
</f:section>
|
|
|
|
<f:section name="Content">
|
|
|
|
<h1>{siteName}</h1>
|
|
<f:be.infobox message="{f:translate(key: 'LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:clickAPage_content')}" state="{f:constant(name: 'TYPO3\CMS\Core\Type\ContextualFeedbackSeverity::INFO')}" />
|
|
|
|
</f:section>
|
|
|
|
</html>
|