{% if iores %}
{% if g.value(iores, SDO.name) %}
- Name
- {{ g.value(iores, SDO.name) }}
{% endif %}
{% if g.value(iores, SDO.version) %}
- Version
- {{ g.value(iores, SDO.version) }}
{% endif %}
{% if g.value(iores, SDO.description) %}
- Description
- {{ g.value(iores, SDO.description) }}
{% endif %}
{% if g.value(iores, SDO.author) %}
- Author(s)
-
{% for label, pores in get_triples(g, iores, SDO.author) %}
-
{% include 'person_or_org.html' %}
{% endfor %}
{% endif %}
{% if g.value(iores, RDF.type) %}
- Type
- {{ g.value(iores, RDF.type).replace("http://schema.org/","") }}
{% endif %}
{% if g.value(iores, SDO.encodingFormat) %}
- Encoding Format
-
{% for formatlabel, _ in get_triples(g, iores, SDO.encodingFormat, abcsort=True) %}
{{ formatlabel }}
{% endfor %}
{% endif %}
{% if g.value(iores, SDO.inLanguage) %}
- Language
-
{% for langlabel, _ in get_triples(g, iores, SDO.inLanguage, abcsort=True) %}
{{ langlabel }}
{% endfor %}
{% endif %}
{% if g.value(iores, SDO.license) %}
- License
- {{ g.value(iores, SDO.license) }}
{% endif %}
{% if g.value(iores, SDO.url) %}
- Website
-
{% for _,_, value in g.triples((iores, SDO.url, None)) %}
- {{ value }}
{% endfor %}
{% endif %}
{% if g.value(iores, SDO.producer) %}
- Producer
-
{% for label, pores in get_triples(g, iores, SDO.producer) %}
- {% include 'person_or_org.html' %}
{% endfor %}
{% endif %}
{% if g.value(iores, SDO.provider) %}
- Provider
-
{% for label, pores in get_triples(g, iores, SDO.provider) %}
- {% include 'person_or_org.html' %}
{% endfor %}
{% endif %}
{% if g.value(iores, SDO.publisher) %}
- Publisher
-
{% for label, pores in get_triples(g, iores, SDO.publisher) %}
- {% include 'person_or_org.html' %}
{% endfor %}
{% endif %}
{% if g.value(iores, SDO.funder) %}
- Funder
-
{% for label, pores in get_triples(g, iores, SDO.funder, abcsort=True) %}
- {% include 'person_or_org.html' %}
{% endfor %}
{% endif %}
{% else %}
{{ label }}
{% endif %}