Blame templates/html/htmlexample.tpl

Packit 1c1d7e
{% extend 'htmlbase.tpl' %}
Packit 1c1d7e
{% msg %}Generating HTML output for example {{ compound.name }}{% endmsg %}
Packit 1c1d7e
Packit 1c1d7e
{% block navpath %}
Packit 1c1d7e
  {% if not config.GENERATE_TREEVIEW %}
Packit 1c1d7e
    {% with navpath=compound.navigationPath %}
Packit 1c1d7e
      {% include 'htmlnavpath.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e
Packit 1c1d7e
{% block content %}
Packit 1c1d7e
Packit 1c1d7e
{{ compound.details }}
Packit 1c1d7e
{{ compound.example }}
Packit 1c1d7e
Packit 1c1d7e
{% endblock %}