componentGroup.template.html 651 B

12345678910111213141516171819202122232425262728293031
  1. {% block content %}
  2. <h1>
  3. {%- if doc.title -%}
  4. {$ doc.title $}
  5. {%- elif doc.moduleName -%}
  6. {$ doc.groupType | title $} components in {$ doc.moduleName | code $}
  7. {%- else -%}
  8. Pages
  9. {%- endif -%}
  10. </h1>
  11. {$ doc.description | marked $}
  12. <div class="component-breakdown">
  13. <div>
  14. <table class="definition-table">
  15. <tr>
  16. <th>Name</th>
  17. <th>Description</th>
  18. </tr>
  19. {% for page in doc.components %}
  20. <tr>
  21. <td>{$ page.id | link(page.name, page) $}</td>
  22. <td>{$ page.description | firstParagraph | marked $}</td>
  23. </tr>
  24. {% endfor %}
  25. </table>
  26. </div>
  27. </div>
  28. {% endblock %}