{% 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 == "concept" %} {% set each = main_entity %} {% set thispage="conceptinfo" %} {% include "html-multi/breadcrumbs.html" %}

{# Concept: #} {{each.title}} {% if not each.children() %} leaf node {% endif %}


URI

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

Label

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

Description

{{each.bestDescription()|linebreaks|default("--")}}
{% endif %}

Inherits from

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

    Implementation

    {% if pygments_code %} {{pygments_code|safe}} {% else %}
    {{each.rdf_source()|linebreaks}}
    {% endif %}
    {% endif %} {% endblock bodycontent %}