mark2web/website/templates/base_doc.html

20 lines
503 B
HTML
Raw Permalink Normal View History

2019-03-22 17:22:03 +01:00
{% extends 'base.html' %}
{% block part0 %}
{{ Body }}
{% endblock part0 %}
{% block part1 %}
{% for e in NavElement.ColMap.doccoll %}
{% with e.FilenameMatch.lowdash|count + 1 as h %}
<h{{ h }}>
{{ e.FilenameMatch.title }}
{% if e.Data.Version %}
<span class="versionBadge">{{ e.Data.Version }}</span>
{% endif %}
</h{{ h }}>
{% endwith %}
{{ e.Body }}
{% endfor %}
{% endblock part1 %}