TYPO3ContentElements/Resources/Private/Templates/ContentElements/SkillDisplaySkillSet.html

15 lines
652 B
HTML
Raw Normal View History

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
xmlns:sd="http://typo3.org/ns/SkillDisplay/Typo3Extension/ViewHelpers"
data-namespace-typo3-fluid="true">
<f:for each="{skillSets}" as="skillSet">
2020-10-19 11:41:57 +02:00
{f:render(partial: 'VerificationBox', arguments: {
title: skillSet.name,
count: '{skillSet.skills -> f:count()}',
detailUrl: 'https://my.skilldisplay.eu/skillset/{skillSet.id}',
brandLogoUrl: skillSet.mediaPublicUrl,
2020-10-19 11:41:57 +02:00
verificationUrl: '{sd:verification.url(skillSet: skillSet.id)}',
description: skillSet.description
})}
</f:for>
</html>