{% extends "base.html" %} {% block navbar %} {% include "navbar.html" %} {% endblock navbar %} {% block sidebar %} {% with thispage=main_entity.qname %} {% include "sidebar.html" %} {% endwith %} {% endblock sidebar %} {% block bodycontent %} {% ifequal main_entity_type "individual" %} {% with main_entity as each %} {% with thispage="individualinfo" %} {% include "breadcrumbs.html" %} {% endwith %}

{{each.title}}


URI

{{each.uri}}
{% if each.bestLabel %}

Label

{{each.bestLabel}}
{% endif %} {% if each.bestDescription %}

Description

{{each.bestDescription|linebreaks|default:"--"}}
{% endif %} {% if each.instance_of %}

Is instance of ({{each.instance_of|length}})

{% if each.instance_of %} {% for s in each.instance_of %}
  • {{s.title}}
  • {% endfor %} {% else %}
  • owl:Thing
  • {% endif %}
    {% endif %}

    Implementation

    {% if pygments_code %} {{pygments_code|safe}} {% else %}
    {{each.rdf_source|linebreaks}}
    {% endif %}
    {% endwith %} {% endifequal %} {% endblock bodycontent %}