{% extends "layout.html" %} {% block content %}
PERSON
{% if "personLabel" in person_details['results']['bindings']%}
{{ x["personLabel"]["value"]}}
{% endif %} {% if "personDescription" in x %}
{{ x["personDescription"]["value"] }}
{% endif %}
{% for x in person_creatorof['results']['bindings']%}
{% if "image" in x %}
{% else %}
{% endif %} {{ x["workLabel"]["value"] }}
{% endfor %}
{% for x in person_publisherof['results']['bindings']%}
{% if "image" in x %}
{% else %}
{% endif %} {{ x["workLabel"]["value"] }}
{% endfor %}
{% endblock content %}