16 lines
390 B
HTML
16 lines
390 B
HTML
{% extends 'layout/base.template.html' %}
|
|
|
|
{% block body %}
|
|
<h1 class="id">{$ doc.id $} <span class="type">module</span></h1>
|
|
|
|
<p>{$ doc.description | marked $}</p>
|
|
|
|
{% if doc.exports.length %}
|
|
<h2>Exports</h2>
|
|
<ul>
|
|
{%- for exportDoc in doc.exports %}
|
|
<li><a href="/{$ exportDoc.path $}">{$ exportDoc.name $} {$ exportDoc.docType $}</a></li>
|
|
{%- endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %} |