angular-cn/aio/tools/transforms/templates/api/export-base.template.html
Pete Bacon Darwin 38fef1588d build(aio): move "see also" block to export-base template (#22681)
This makes it easier for all the API docs to display "see also" links
in a consitent manner.

PR Close #22681
2018-03-12 11:23:46 -07:00

12 lines
388 B
HTML

{% extends 'base.template.html' -%}
{% block body %}
<p class="short-description">{$ doc.shortDescription | marked $}</p>
{% include "includes/security-notes.html" %}
{% include "includes/deprecation.html" %}
{% block overview %}{% endblock %}
{% include "includes/see-also.html" %}
{% block details %}{% endblock %}
{% include "includes/usageNotes.html" %}
{% endblock %}