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
This commit is contained in:
Pete Bacon Darwin 2018-03-09 13:37:28 +00:00 committed by Kara Erickson
parent 3f70aba272
commit 38fef1588d
3 changed files with 1 additions and 2 deletions

View File

@ -5,6 +5,7 @@
{% 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 %}

View File

@ -6,5 +6,4 @@
}
</code-example>
{$ descendants.renderDescendants(doc, 'class', 'Subclasses') $}
{% include "includes/see-also.html" %}
</section>

View File

@ -8,5 +8,4 @@ interface {$ doc.name $}{$ doc.typeParams | escape $}{$ memberHelper.renderHerit
</code-example>
{$ descendants.renderDescendants(doc, 'interface', 'Child Interfaces') $}
{$ descendants.renderDescendants(doc, 'class', 'Class Implementations') $}
{% include "includes/see-also.html" %}
</section>