{% extends 'app.html' %}
{% load static %}
{#
Landing page of a dataset.
The page itself is rendered by Vue, which means that a client that does not
execute JavaScript sees nothing but the app shell. For a *published* dataset
that is a problem: its DOI resolves here, and this is where FAIR assessment
tools, search engines and reference managers come looking for the metadata.
Everything below is therefore rendered server-side, and only for published
datasets: an unpublished one is not public and has nothing to advertise.
#}
{% block title %}{% if publication %}{{ dataset_name }} - contact.engineering{% else %}{{ block.super }}{% endif %}{% endblock title %}
{% block meta_description %}
{% if publication %}
{% else %}
{{ block.super }}
{% endif %}
{% endblock meta_description %}
{% block head_metadata %}
{% if publication %}
{# Structured description of the dataset, https://schema.org/Dataset #}
{% if schema_org_jsonld %}
{% endif %}
{# Citation metadata, as read by reference managers and Google Scholar #}
{% for author in publication.authors_json %}
{% endfor %}
{% if publication.doi_name %}
{% endif %}
{# Signposting typed links, https://signposting.org/FAIR/ #}
{% if publication.doi_url %}
{% endif %}
{% if metadata_url %}
{% endif %}
{% if container_url %}
{% endif %}
{% if license_url %}
{% endif %}
{% for author in publication.authors_json %}
{% if author.orcid_id %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock head_metadata %}