{% extend 'htmlbase.tpl' %} {% msg %}Generating HTML output for concept {{ compound.name }}{% endmsg %} {% block navpath %} {% if not config.GENERATE_TREEVIEW %} {% with navpath=compound.navigationPath %} {% include 'htmlnavpath.tpl' %} {% endwith %} {% endif %} {% endblock %} {% block title %} {{ block.super }} {% endblock %} {% block content %}
{# brief description #} {% if compound.brief %}

{{ compound.brief }} {% if compound.hasDetails %} {{ tr.more }} {% endif %}

{% endif %} {# includes #} {% if compound.includeInfo %}

{% with ii=compound.includeInfo %} {% include 'htmlinclude.tpl' %} {% endwith %}

{% endif %} {# concept definition #}

{{ tr.conceptDefinition }}

{{ compound.initializerAsCode }}
{# detailed description #} {% if compound.hasDetails %} {% if compound.anchor %} {% else %} {% endif %}

{{ tr.detailedDesc }}

{# brief description #} {% if compound.brief and config.REPEAT_BRIEF %}

{{ compound.brief }}

{% endif %} {{ compound.details }}
{# source definition #} {% if compound.sourceDef %} {% markers obj in compound.sourceDef with tr.definedAtLineInSourceFile %} {% with text=obj.text %} {% include 'htmlobjlink.tpl' %} {% endwith %} {% endmarkers %} {% endif %} {% endif %}
{% endblock %}