{% extends "base.html" %} {% block title %}{{ pub.title }}{% endblock %} {%- block head -%} {{ super() }} {%- endblock %} {%- block content %}

{{ pub.title }}

{%- if pub.affiliations %}
    {%- for a in pub.affiliations %}
  1. {{ a }}
  2. {%- endfor %}
{%- endif %}

Cite as: {{ pub.authorlist }} ({{ pub.publicationDate.year }}): {{ pub.title }}. HZB Data Service. {{ pub.pid.url }}

Abstract

{%- for p in pub.description.split("\n") %}

{{ p }}

{%- endfor %}

Datafiles

{%- if pub.subjects %}

Keywords

{{ pub.subjects|join(', ') }}

{%- endif %} {%- if pub.descrRelations %}

Data Description

{%- for rt in pub.descrRelations.keys() %}

{{ rt }}

    {%- for rel in pub.descrRelations[rt] %}
  • {%- if rel.url -%} {{ rel.fullReference }} {%- else -%} {{ rel.fullReference }} {%- endif -%}
  • {%- endfor %}
{%- endfor %}
{%- endif %} {%- if pub.otherRelations %}

Related Work

{%- for rt in pub.otherRelations.keys() %}

{{ rt }}

    {%- for rel in pub.otherRelations[rt] %}
  • {%- if rel.url -%} {{ rel.fullReference }} {%- else -%} {{ rel.fullReference }} {%- endif -%}
  • {%- endfor %}
{%- endfor %}
{%- endif %} {%- if pub.text_dates %}

Dates

    {%- for d in pub.text_dates %}
  • {{ d }}
  • {%- endfor %}
{%- endif %}

License

CC0

{%- endblock %}