angular-docs-cn/aio/tools/transforms/templates/disambiguator.template.html

15 lines
357 B
HTML

{% marked %}
# {$ doc.title $}
{% endmarked %}
{% block content %}
<div class="content">
There are multiple pages that match this path:
<ul>
{% for ambiguousDoc in doc.docs %}<li>
<a href="{$ ambiguousDoc.path $}">{$ ambiguousDoc.id $}</a>
{$ ambiguousDoc.shortDescription | marked $}
</li>{% endfor %}
</ul>
</div>
{% endblock %}