bibcite_footnotes-8.x-1.0-beta3/templates/bibcite-footnotes-list.html.twig
templates/bibcite-footnotes-list.html.twig
{#
/**
* @file
* Template for rendering multiple Bibcite references as footnotes.
*
* Available variables:
* - references: Array of renderable reference items.
* - style: The citation style ('note' or 'bibliography').
*/
#}
{% if style == 'note' %}
<ol class="bibcite-footnotes">
{% for reference in references %}
<li class="bibcite-footnote">{{ reference }}</li>
{% endfor %}
</ol>
{% else %}
<div class="bibcite-bibliography">
{% for reference in references %}
<div class="bibcite-reference">{{ reference }}</div>
{% endfor %}
</div>
{% endif %}
