Files
angular-docs-cn/docs/docs-package/templates/module.template.html
T

19 lines
536 B
HTML
Raw Normal View History

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