Files
drupal-mathallo/web_main/themes/custom/mathallo/templates/footnote-links.html.twig
2026-07-07 16:31:47 +02:00

14 lines
407 B
Twig

{% apply footnotes_spaceless %}
{# footnotes/footnote-links.html.twig #}
{%- if footnote_links -%}
<span class="footnote__citations-wrapper">
{%- for footnote_link in footnote_links -%}
{% if not loop.first %}
<span class="footnote__citation-separator">, </span>
{% endif %}
{{ footnote_link }}
{%- endfor -%}
</span>
{%- endif -%}
{% endapply %}