2015-05-19 17:29:34 -04:00
|
|
|
{% include "lib/githubLinks.html" -%}
|
2014-12-04 09:02:03 -05:00
|
|
|
{% extends 'layout/base.template.html' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1 class="id">{$ doc.id $} <span class="type">module</span></h1>
|
2015-05-19 17:29:34 -04:00
|
|
|
<p>defined in {$ githubViewLink(doc) $}</p>
|
2014-12-04 09:02:03 -05:00
|
|
|
<p>{$ doc.description | marked $}</p>
|
|
|
|
|
|
|
|
{% if doc.exports.length %}
|
|
|
|
<h2>Exports</h2>
|
|
|
|
<ul>
|
|
|
|
{%- for exportDoc in doc.exports %}
|
2015-04-14 15:24:07 -04:00
|
|
|
{% if not exportDoc.private -%}
|
2015-05-19 08:11:20 -04:00
|
|
|
<li><a href="{$ exportDoc.path $}"><strong>{$ exportDoc.name $}</strong> {$ exportDoc.docType $}</a></li>
|
2015-04-14 15:24:07 -04:00
|
|
|
{%- endif %}
|
2014-12-04 09:02:03 -05:00
|
|
|
{%- endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|