For more information about this repository, visit the project page at https://www.drupal.org/project/bibcite_footnotes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
486 B
22 lines
486 B
6 years ago
|
{#
|
||
|
/**
|
||
|
* @file footnote-list.html.twig
|
||
|
* Default theme implementation to present a list of reference footnotes.
|
||
|
*
|
||
|
* Available variables:
|
||
|
* - footnotess: A list of footnotes
|
||
|
* - notes: A list of free-form notes
|
||
|
* - references: A list of citations
|
||
|
* - attributes: HTML attributes for the container element.
|
||
|
*
|
||
|
* @see template_preprocess_footnote_list().
|
||
|
*
|
||
|
* @ingroup themeable
|
||
|
*/
|
||
|
#}
|
||
|
|
||
|
<div{{ attributes.addClass('footnote-list') }}>
|
||
|
{{ notes }}
|
||
6 years ago
|
{{ references }}
|
||
6 years ago
|
</div>
|