mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-14 16:46:10 +01:00
9f43ea427b
To avoid name clashes we use a more precise extension key. Also the namespace is adjusted accordingly. Resolves: #8
14 lines
700 B
HTML
14 lines
700 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
|
xmlns:sd="http://typo3.org/ns/SkillDisplay/SkilldisplayContent/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.brand.logoPublicUrl,
|
|
verificationUrl: '{sd:verification.url(skillSet: skillSet.id, campaign: data.skilldisplay_campaign)}',
|
|
description: skillSet.description
|
|
})}
|
|
</f:for>
|
|
</html>
|