{# Copyright (C) 2024 Graz University of Technology. invenio-catalogue-marc21 is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {%- macro show_item(metadata, icon="file alternate", links={}, children=[]) %}
{%- if "self_html" in links %} {%- endif %}
{{ metadata.get('title_statement', {}).get('title') }}
{%- if "self_html" in links %}
{%- endif %}
{{ metadata.get('main_entry_personal_name', {}).get('personal_name') }}
{% if children %}
{% for child in children %} {{ show_item(metadata=child["node"]["metadata"], links=child["node"]["links"], children=child["children"]) }} {% endfor %}
{% endif %}
{%- endmacro %}
Chapters
{% if tree["root"]["id"] != tree["parent"]["id"] %} {{ show_item(metadata=tree["root"]["metadata"], links=tree["root"]["links"], children=[]) }} {% endif %} {{ show_item(metadata=tree["parent"]["metadata"], icon="file", links=tree["parent"]["links"], children=tree["children"]) }}