13 lines
287 B
HTML
13 lines
287 B
HTML
|
{% extends 'layout/base.template.html' -%}
|
||
|
|
||
|
{% block body -%}
|
||
|
<ul>
|
||
|
{% for page in doc.childPages -%}
|
||
|
<li>
|
||
|
<!-- TODO: convert to hovercard -->
|
||
|
<a href="{$ relativePath(doc.moduleFolder, page.exportDoc.path) $}">{$ page.title $}</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endblock %}
|