{# -*- coding: utf-8 -*- Copyright (C) 2021 Graz University of Technology. Invenio-Records-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. #} {% set title = marcrecord.get('title_statement') %} {% set publisher = marcrecord.get('production_publication_distribution_manufacture_and_copyright_notice') %} {% if title %} {% set personal = marcrecord.get('main_entry_personal_name') %}
{{ personal.get('personal_name')}}
{% endif %} {% if publisher %} {% set location = publisher.get('place_of_production_publication_distribution_manufacture') %} {% set date = publisher.get('date_of_production_publication_distribution_manufacture_or_copyright_notice') %}{{location if location}} {{date if date}}
{% endif %}