{# -*- coding: utf-8 -*- Copyright (C) 2019-2020 CERN. Copyright (C) 2019-2020 Northwestern University. Copyright (C) 2021 New York University. Copyright (C) 2020-2023 TU Wien. Invenio Theme TUW is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {#- base: invenio-app-rdm v9.1.2 #} {#- changes: everything, including view function #} {%- extends config.BASE_TEMPLATE %} {%- block page_header %} {% include config.THEME_HEADER_TEMPLATE %} {%- endblock %} {%- block page_hero %}
{% include "invenio_theme_tuw/search_bar.html" %}
{%- endblock page_hero %} {%- block page_body %} {%- block frontpage_info %} {%- if config.THEME_TUW_FRONTPAGE_INFO %}

{{ config.THEME_TUW_FRONTPAGE_INFO|safe }}

{%- endif %} {%- endblock %} {%- block frontpage_warning %} {%- if config.THEME_TUW_FRONTPAGE_WARNING %}

{{ config.THEME_TUW_FRONTPAGE_WARNING|safe }}

{%- endif %} {%- endblock %}

Welcome to {{ config.THEME_SITENAME }}

{{ config.THEME_SITENAME }} is an institutional repository of TU Wien to enable storing, sharing and publishing of digital objects, in particular research data. It facilitates the funders' requirements for open access to research data and the FAIR principles by making research output findable, accessible, interoperable and re-usable. It is developed by the TU Wien Center for Research Data Management and hosted by TU.it.

The repository uses persistent identifiers and synchronises with data hubs: DataCite, OpenAIRE, and BASE. Thus, it maximizes the visibility of the uploaded content. {{ config.THEME_SITENAME }} is also listed in FAIRsharing and re3data - registries many funders refer to.

icon displaying a cloud and a arrow pointing upwards.

Deposit research outputs openly, restricted or closed. A landing page provides information on your digital objects, download links, license and persistent identifier.

Deposit
icon displaying a magnifying glass

Search datasets published by other users.

Search
icon displaying a faq speach bubble

For any questions regarding this service, please refer to our FAQ and our Upload Guide.

FAQ
icon displaying two speach bubbles

To get in touch with our team, please visit our 'Contact' page.

Contact

Recent Uploads

{%- for r in records %} {%- set creation_date = r.created|from_isodatetime -%} {%- set record_url = url_for('invenio_app_rdm_records.record_detail', pid_value=r.id) %}

{{ r.metadata.title }}

{%- for creators in r.metadata.creators %} {%- if creators.identifiers and creators.identifiers.orcid %} {%- endif %} {{ creators.person_or_org.name }} {% if not loop.last %}; {% endif %} {%- endfor %}
{{ r.metadata.publication_date }} {{ '(' ~ r.metadata.version ~ ')' if r.metadata.version }} {{ r.ui.resource_type.title_l10n }} {% if r.ui.access_status.icon %}{% endif %} {{ r.ui.access_status.title_l10n }}
{{ r.metadata.description | striptags | truncate(300) }}
{%- for s in r.metadata.subjects %}
{{ s.subject }}
{%- endfor %}
{% trans user=userprofile, date=creation_date | dateformat('long') %} Uploaded on {{ date }} {% endtrans %}
{%- endfor %}
{%- if not records %}

Currently no records available.

{%- endif %}
{%- endblock page_body %} {%- block javascript %} {{ super() }} {%- endblock javascript %} {%- block trackingcode %} {% include config.THEME_TRACKINGCODE_TEMPLATE %} {%- endblock %}