Blame templates/html/htmlsource.tpl

Packit 1c1d7e
{% extend 'htmlbase.tpl' %}
Packit 1c1d7e
{% msg %}Generating HTML source code for file {{ 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 title %}
Packit 1c1d7e
  {# write summary links in the title area #}
Packit 1c1d7e
  
{{ compound.name }}
Packit 1c1d7e
  {% if compound.version %} ({{ compound.version }}){% endif %}
Packit 1c1d7e
  
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e
Packit 1c1d7e
{% block content %}
Packit 1c1d7e
Packit 1c1d7e
Packit 1c1d7e
{{ tr.gotoDocumentation }}
Packit 1c1d7e
Packit 1c1d7e
Packit 1c1d7e
{{ compound.sources }}
Packit 1c1d7e
Packit 1c1d7e
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e