Blame templates/html/htmlsource.tpl

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