mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
27 lines
636 B
HTML
27 lines
636 B
HTML
---
|
|
<@ include "lib/yaml.template.html" @>
|
|
title: "<@ if doc.title @><$ doc.title $><@ elif doc.module @><$ doc.groupType | title $>s in module ionic<@ else @>Pages<@ endif @>"
|
|
header_sub_title: "<$ doc.components.length $> <$ doc.groupType $>s"
|
|
doc: "<$ doc.groupType $>"
|
|
docType: "<$ doc.groupType $>"
|
|
---
|
|
|
|
<@ block content @>
|
|
|
|
<$ doc.description $>
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<@ for page in doc.components @>
|
|
<tr>
|
|
<td><$ page.id | link(page.name, page) $></td>
|
|
<td><$ page.description | firstParagraph | marked $></td>
|
|
</tr>
|
|
<@ endfor @>
|
|
</table>
|
|
|
|
<@ endblock @>
|