collections via markdown files
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
19
website/templates/base_doc.html
Normal file
19
website/templates/base_doc.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user