angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
32 lines (28 loc) • 657 B
HTML
{% block content %}
<h1>
{%- if doc.title -%}
{$ doc.title $}
{%- elif doc.module -%}
{$ doc.groupType | title $} components in {$ doc.module | code $}
{%- else -%}
Pages
{%- endif -%}
</h1>
{$ doc.description | marked $}
<div class="component-breakdown">
<div>
<table class="definition-table md-api-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>
</div>
</div>
{% endblock %}