TYPO3ContentElements/Resources/Private/Templates/ContentElements/SkillDisplaySkillSet.html
Daniel Siepmann 8137b7678b
Fix wrong adoption of static HTML
* Do use proper counting of skills for skill set
* Do not use example brand logo, but logo provided by API
  (once implemented in toolkit)
* Open verification in new tab
* Do not use pending state.
2020-10-19 15:43:09 +02:00

14 lines
652 B
HTML

<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">
{f:render(partial: 'VerificationBox', arguments: {
title: skillSet.name,
count: '{skillSet.skills -> f:count()}',
detailUrl: 'https://my.skilldisplay.eu/skillset/{skillSet.id}',
brandLogoUrl: skillSet.mediaPublicUrl,
verificationUrl: '{sd:verification.url(skillSet: skillSet.id)}',
description: skillSet.description
})}
</f:for>
</html>