2021-09-14 10:59:19 +00:00
|
|
|
{%- macro ngModuleList(ngModules, heading) -%}
|
|
|
|
|
{%- if ngModules and ngModules.length > 0 %}
|
2021-05-06 11:25:24 +00:00
|
|
|
<h2>{$ heading $}</h2>
|
|
|
|
|
<ul>
|
2021-09-14 10:59:19 +00:00
|
|
|
{%- for ngModule in ngModules %}
|
2021-05-06 11:25:24 +00:00
|
|
|
<li>
|
2021-09-14 10:59:19 +00:00
|
|
|
{%- if ngModule.path %}
|
2021-05-06 11:25:24 +00:00
|
|
|
<a href="{$ ngModule.path $}">
|
2023-07-19 22:09:09 +00:00
|
|
|
<code>{$ ngModule.name | escape $}</code>
|
2021-05-06 11:25:24 +00:00
|
|
|
</a>
|
2021-09-14 10:59:19 +00:00
|
|
|
{%- else %}
|
2023-07-19 22:09:09 +00:00
|
|
|
<code>'{$ ngModule | escape $}'</code>
|
2021-09-14 10:59:19 +00:00
|
|
|
{%- endif %}
|
2021-05-06 11:25:24 +00:00
|
|
|
</li>
|
2021-09-14 10:59:19 +00:00
|
|
|
{%- endfor %}
|
2021-05-06 11:25:24 +00:00
|
|
|
</ul>
|
2021-09-14 10:59:19 +00:00
|
|
|
{%- endif -%}
|
|
|
|
|
{%- endmacro -%}
|