summaryrefslogtreecommitdiffstats
path: root/templates/html/htmlexample.tpl
blob: f8c1f96deebc038f438ad6d7bd54c9727971932b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extend 'htmlbase.tpl' %}
{% msg %}Generating HTML output for example {{ compound.name }}{% endmsg %}

{% block navpath %}
  {% if not config.GENERATE_TREEVIEW %}
    {% with navpath=compound.navigationPath %}
      {% include 'htmlnavpath.tpl' %}
    {% endwith %}
  {% endif %}
{% endblock %}

{% block content %}
<div class="contents">
{{ compound.details }}
{{ compound.example }}
</div>
{% endblock %}