2016-09-09 07:47:20 -04:00
|
|
|
{% import "lib/githubLinks.html" as github -%}
|
2015-09-16 02:21:55 -04:00
|
|
|
{% extends 'layout/base.template.html' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1 class="id">{$ doc.id $} <span class="type">module</span></h1>
|
2016-09-14 02:50:02 -04:00
|
|
|
<p>defined in {$ github.githubViewLink(doc, versionInfo) $}</p>
|
2015-09-16 02:21:55 -04:00
|
|
|
<p>{$ doc.description | marked $}</p>
|
|
|
|
|
|
|
|
{% if doc.exports.length %}
|
|
|
|
<h2>Exports</h2>
|
|
|
|
<ul>
|
|
|
|
{%- for exportDoc in doc.exports %}
|
2015-10-02 17:44:57 -04:00
|
|
|
{% if not exportDoc.internal -%}
|
2015-09-16 02:21:55 -04:00
|
|
|
<li><a href="{$ exportDoc.path $}"><strong>{$ exportDoc.name $}</strong> {$ exportDoc.docType $}</a></li>
|
|
|
|
{%- endif %}
|
|
|
|
{%- endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|