TYPO3ContentElements/Resources/Private/Templates/ContentElements/SkillDisplaySkills.html
Daniel Siepmann da3aed135c
Add content element "skills"
Allow editors to add new content element "skills".
The element contains an input for a comma separated list of skill IDs.
A preview in backend is shown.
Frontend rendering is provided.
2020-09-22 10:37:24 +02:00

13 lines
534 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="{skills}" as="skill">
<div class="card">
<div class="card-body">
<h5 class="card-title">{skill.title}</h5>
<p class="card-text">{skill.description -> f:format.html()}</p>
<sd:verification.button skill="{skill.id}"/>
</div>
</div>
</f:for>
</html>