mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-27 20:46:14 +00:00
14 lines
492 B
Twig
14 lines
492 B
Twig
{% set reversed_parents = parents|reverse %}
|
|
<span class="chill-entity entity-social-action">
|
|
<span class="{% if not options['no-badge'] %}badge bg-light text-dark{% endif %}">
|
|
{%- for p in reversed_parents %}
|
|
<span class="parent-{{ loop.revindex0 }}">
|
|
{{ p.title|localize_translatable_string }}{{ options['default.separator'] }}
|
|
</span>
|
|
{%- endfor -%}
|
|
<span class="child">
|
|
{{ socialAction.title|localize_translatable_string }}
|
|
</span>
|
|
</span>
|
|
</span>
|