28 lines
1020 B
HTML
28 lines
1020 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:layout name="Widget/Widget" />
|
|
<f:section name="main">
|
|
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
<f:if condition="{currentVersion} && {copyrightYear}">
|
|
<p>
|
|
{f:translate(key: 'widgets.t3information.text',
|
|
extensionName: 'dashboard',
|
|
arguments: '{
|
|
0: currentVersion,
|
|
1: "© {copyrightYear}",
|
|
2: "Kasper Skårhøj"
|
|
}') -> f:format.raw()}
|
|
</p>
|
|
</f:if>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<img src="{f:uri.resource(path: 'EXT:core/Resources/Public/Images/typo3_light_dark.svg')}"
|
|
class="widget-t3information-logo"
|
|
alt="{f:translate(key:'widgets.t3information.logo', extensionName: 'dashboard')}"/>
|
|
</div>
|
|
</div>
|
|
|
|
</f:section>
|
|
</html>
|