2015-03-31 16:51:25 -04:00
|
|
|
{% include "lib/paramList.html" -%}
|
|
|
|
{% extends 'layout/base.template.html' -%}
|
2014-12-04 09:02:03 -05:00
|
|
|
|
|
|
|
{% block body %}
|
2015-03-31 16:51:25 -04:00
|
|
|
<h1 class="class export">{$ doc.name $} <span class="type">class</span></h1>
|
2014-12-04 09:02:03 -05:00
|
|
|
<p class="module">exported from <a href="/{$ doc.moduleDoc.path $}">{$ doc.moduleDoc.id $}</a></p>
|
|
|
|
<p>{$ doc.description | marked $}</p>
|
|
|
|
|
|
|
|
<h2>Members</h2>
|
2015-03-31 16:51:25 -04:00
|
|
|
{%- if doc.constructorDoc %}
|
|
|
|
<h3>{$ doc.constructorDoc.name $}{$ paramList(doc.constructorDoc.params) $}</h3>
|
|
|
|
<p>{$ doc.constructorDoc.description | marked $}</p>
|
|
|
|
{% endif -%}
|
|
|
|
{%- for member in doc.members %}
|
|
|
|
<h3>{$ member.name $}{$ paramList(member.params) $}</h3>
|
2014-12-04 09:02:03 -05:00
|
|
|
<p>{$ member.description | marked $}</p>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endblock %}
|