Blame templates/html/htmlexample.tpl

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