{# Copyright (C) 2020 CERN. Invenio RDM Records is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {%- if external_resources -%}

{{ _('External resources')}}

{# dynamically create the list of external resources #}
{%- for section, external_resources in external_resources | groupby("content.section") -%}
{{ section }}
{%- for resource in external_resources -%} {%- if resource -%} {%- if resource.template -%} {# It's up to the template to render the `resource` as it wishes #} {%- include resource.template %} {%- else -%} {# Default rendering #}
{% if resource.content.icon %} {{ resource.content.title }} icon {% endif %}
{{ resource.content.title }} {% if resource.content.subtitle %}
{{ resource.content.subtitle }}
{%- endif -%}
{%- endif -%} {%- endif -%} {%- endfor -%} {%- endfor -%}
{%- endif -%}