{% extends "html-multi/base.html" %} {% block navbar %} {% include "html-multi/navbar.html" %} {% endblock navbar %} {% block sidebar %} {% set thispage=main_entity.qname %} {% include "html-multi/sidebar.html" %} {% endblock sidebar %} {% block bodycontent %} {% if main_entity_type == "individual" %} {% set each = main_entity %} {% set thispage="individualinfo" %} {% include "html-multi/breadcrumbs.html" %}

{{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 %}
    {% endif %} {% endblock bodycontent %}