kitodo-presentation/Resources/Private/Templates/Calendar/Years.html

37 lines
1.3 KiB
HTML

<f:comment>
<!--
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
* This file is part of the Kitodo and TYPO3 projects.
*
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
-->
</f:comment>
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers">
<div class="tx-dlf-calendar-years">
<div class="meta-header">
<div class="year-anchor">
<f:link.page additionalParams="{'tx_dlf[id]': documentId}">
<f:translate key="calendar.allYears" /> {allYearDocTitle}
</f:link.page>
</div>
<div class="meta-hint-year">
<f:translate key="calendar.please_choose_year" />
</div>
</div>
<div class="year-view">
<ul>
<f:for each="{yearName}" as="yearEntry">
<li class="year">
<f:link.page additionalParams="{'tx_dlf[id]': yearEntry.documentId}">
{yearEntry.title}
</f:link.page>
</li>
</f:for>
</ul>
</div>
</div>
</html>